20 lines
292 B
Go
20 lines
292 B
Go
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
|
|
}
|