This commit is contained in:
cdle
2021-09-15 17:59:57 +08:00
parent 29e632a5b1
commit 4e86d55bf6
+1 -1
View File
@@ -13,7 +13,7 @@ var Buckets = []Bucket{}
func NewBucket(name string) Bucket {
b := Bucket(name)
Buckets = append(Buckets)
Buckets = append(Buckets, b)
return b
}