2014-12-02 01:36:20 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
_ "net/http/pprof"
|
|
|
|
|
2020-08-24 11:18:39 +00:00
|
|
|
"github.com/distribution/distribution/v3/registry"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/auth/htpasswd"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/auth/silly"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/auth/token"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/proxy"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/storage/driver/azure"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/storage/driver/filesystem"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/storage/driver/gcs"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/storage/driver/inmemory"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/storage/driver/middleware/alicdn"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/storage/driver/middleware/cloudfront"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/storage/driver/middleware/redirect"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/storage/driver/oss"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/storage/driver/s3-aws"
|
|
|
|
_ "github.com/distribution/distribution/v3/registry/storage/driver/swift"
|
2014-12-02 01:36:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-01-19 22:26:15 +00:00
|
|
|
registry.RootCmd.Execute()
|
2014-12-02 01:36:20 +00:00
|
|
|
}
|