feat: init commit

This commit is contained in:
DaanSelen
2026-04-20 16:58:20 +02:00
parent 5b84b3ed1d
commit 4b783b50fb
14 changed files with 495 additions and 0 deletions
+19
View File
@@ -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
}