bilibili-backup/app/admin/main/bfs/model/group.go
2019-04-22 02:59:20 +00:00

13 lines
290 B
Go

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"`
}