| 12 | type appdb gorm.DB |
| 13 | |
| 14 | type 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 | |
| 27 | type folder struct { |
| 28 | FolderID string `json:"folder_id"` |
nothing calls this directly
no outgoing calls
no test coverage detected