bilibili-backup/app/admin/main/bfs/model/group.go

13 lines
290 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
package model
// Group .
type Group struct {
Stores []string `json:"stores"`
StoreDatas map[string]*Store `json:"store_datas"`
Total struct {
Space int64 `json:"space"`
FreeSpace int64 `json:"free_space"`
Volumes int64 `json:"volumes"`
} `json:"total"`
}