c6b9944ab1
This commit removes swift storage driver from distribution. There are several reasons for it: * no real life expertise among the maintainers * swift is compatible with S3 API operations required by S3 storage driver This will also remove depedencies that are also hard to keep up with. Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
24 lines
1.1 KiB
Go
24 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
_ "net/http/pprof"
|
|
|
|
"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"
|
|
)
|
|
|
|
func main() {
|
|
registry.RootCmd.Execute()
|
|
}
|