feat: init commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package database
|
||||
|
||||
type AppState struct {
|
||||
ID int `gorm:"primaryKey"`
|
||||
// Mode =
|
||||
// 0: unspecified
|
||||
// 1: video
|
||||
// 2: presentation
|
||||
// 3: internet URL
|
||||
Mode string
|
||||
Running bool
|
||||
}
|
||||
|
||||
type Files struct {
|
||||
ID int `gorm:"primaryKey"`
|
||||
Mode string
|
||||
Filename string
|
||||
Filepath string
|
||||
}
|
||||
Reference in New Issue
Block a user