fix: wrong bucket create endpoint

This commit is contained in:
Derrick Hammer 2024-01-15 14:33:51 -05:00
parent d4ed4eb9a2
commit 138b7a8e8c
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ func (s *StorageServiceImpl) createBucketIfNotExists(bucket string) error {
SetBody(map[string]string{
"bucket": bucket,
}).
Post("/api/bus/bucket")
Post("/api/bus/buckets")
if err != nil {
return err
}