This commit is contained in:
2025-08-30 20:52:27 -04:00
parent e7ebccd4a9
commit f53959b38f
31 changed files with 789 additions and 479 deletions

12
web/models/info.go Normal file
View File

@@ -0,0 +1,12 @@
package models
type UserInfo struct {
Username string
IsAdmin bool
}
type ServerInfo struct {
RegistrationEnabled bool
SearchEnabled bool
Version string
}