11 lines
191 B
Go
11 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())
|
||
|
}
|