3 Commits

Author SHA1 Message Date
2c3d192b6d resolve conflict 2023-11-27 08:47:21 +01:00
504d225401 remove public schema 2023-11-27 07:20:56 +01:00
52b7e3fa93 run go mod tidy 2023-08-21 14:58:07 +02:00
2 changed files with 0 additions and 5 deletions

View File

@@ -49,6 +49,4 @@ table "groups" {
}
}
schema "groups_management" {
}
schema "public" {
}

View File

@@ -30,9 +30,6 @@ func NewStorage(cfg *viper.Viper) (Storage, error) {
case "mongodb":
s, err := NewMongoDBStorage(cfg)
return s, err
case "psql":
s, err := NewPostgresqlStorage(cfg)
return s, err
default:
return nil, fmt.Errorf("storage type %v is not supported", storage_type)
}