fix misnamed owncloudsql driver

This commit is contained in:
Jörn Friedrich Dreyer
2022-05-03 17:50:40 +02:00
committed by GitHub
parent 0fe6676738
commit 2c49a47d66
3 changed files with 5 additions and 5 deletions

View File

@@ -25,7 +25,7 @@ func GetCommands(cfg *config.Config) cli.Commands {
}
}
// Execute is the entry point for the ocis-storage-metadata command.
// Execute is the entry point for the storage-metadata command.
func Execute(cfg *config.Config) error {
app := clihelper.DefaultApp(&cli.App{
Name: "storage-metadata",

View File

@@ -25,11 +25,11 @@ func GetCommands(cfg *config.Config) cli.Commands {
}
}
// Execute is the entry point for the ocis-accounts command.
// Execute is the entry point for the storage-publiclink command.
func Execute(cfg *config.Config) error {
app := clihelper.DefaultApp(&cli.App{
Name: "appprovider",
Usage: "Provide apps for oCIS",
Name: "storage-publiclink",
Usage: "Provide publiclink storage for oCIS",
Commands: GetCommands(cfg),
})

View File

@@ -75,7 +75,7 @@ type HTTPConfig struct {
type Drivers struct {
OCIS OCISDriver `yaml:"ocis"`
S3NG S3NGDriver `yaml:"s3ng"`
OwnCloudSQL OwnCloudSQLDriver `yaml:"owncloud_sql"`
OwnCloudSQL OwnCloudSQLDriver `yaml:"owncloudsql"`
S3 S3Driver `yaml:",omitempty"` // not supported by the oCIS product, therefore not part of docs
EOS EOSDriver `yaml:",omitempty"` // not supported by the oCIS product, therefore not part of docs