mirror of
https://github.com/distribution/distribution.git
synced 2025-08-18 06:49:44 +00:00
go1.8 Plugin package brings a mechanism for dynamyc loading. StorageDriver or AccessController can be compiled as plugin and can be loaded at runtime. Signed-off-by: Anton Tiurin <noxiouz@yandex.ru>
9 lines
166 B
Go
9 lines
166 B
Go
package main
|
|
|
|
import (
|
|
_ "github.com/docker/distribution/registry/auth/silly"
|
|
_ "github.com/docker/distribution/registry/storage/driver/inmemory"
|
|
)
|
|
|
|
func main() {}
|