distribution/registry/pluginloader/testplugin/testplugin.go
Anton Tiurin 9b1e893755
Introduce dynamic plugins
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>
2017-02-17 02:34:19 +03:00

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() {}