distribution/main/storagedriver/inmemory/inmemory.go

11 lines
191 B
Go
Raw Normal View History

package main
import (
"github.com/docker/docker-registry/storagedriver/inmemory"
"github.com/docker/docker-registry/storagedriver/ipc"
)
func main() {
ipc.Server(inmemory.NewDriver())
}