10 lines
191 B
Go
10 lines
191 B
Go
package main
|
|
|
|
import (
|
|
"github.com/docker/docker-registry/storagedriver/inmemory"
|
|
"github.com/docker/docker-registry/storagedriver/ipc"
|
|
)
|
|
|
|
func main() {
|
|
ipc.Server(inmemory.NewDriver())
|
|
}
|