MCPcopy Create free account
hub / github.com/FloatTech/ZeroBot-Plugin-Playground / application

Struct application

plugin/qqci/model.go:14–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12type appdb gorm.DB
13
14type application struct {
15 ID int64 `gorm:"column:id;primary"`
16 Appname string `gorm:"column:appname;unique_index" flag:"a"`
17 Gitrepo string `gorm:"column:gitrepo" flag:"r"`
18 Gitbranch string `gorm:"-" flag:"b"`
19 Directory string `gorm:"column:directory" flag:"dir"`
20 Command string `gorm:"column:command" flag:"cmd"`
21 Action string `gorm:"-" flag:"act"`
22 Upload string `gorm:"-" flag:"u"`
23 Folder string `gorm:"column:folder" flag:"f"`
24 GroupID int `gorm:"column:group_id" flag:"gid"`
25}
26
27type folder struct {
28 FolderID string `json:"folder_id"`

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected