Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alist-org
GitHub Repository: alist-org/alist
Path: blob/main/internal/model/meta.go
1560 views
1
package model
2
3
type Meta struct {
4
ID uint `json:"id" gorm:"primaryKey"`
5
Path string `json:"path" gorm:"unique" binding:"required"`
6
Password string `json:"password"`
7
PSub bool `json:"p_sub"`
8
Write bool `json:"write"`
9
WSub bool `json:"w_sub"`
10
Hide string `json:"hide"`
11
HSub bool `json:"h_sub"`
12
Readme string `json:"readme"`
13
RSub bool `json:"r_sub"`
14
Header string `json:"header"`
15
HeaderSub bool `json:"header_sub"`
16
}
17
18