implement server side auth checking,

implement some account server side rendering
This commit is contained in:
2025-03-25 19:24:25 +00:00
parent 75330e8a59
commit b8ebbf6c3d
7 changed files with 191 additions and 117 deletions

View File

@@ -67,3 +67,13 @@ type Instance struct {
ConfigureBtnIcon Icon
DeleteBtnIcon Icon
}
type Account struct {
Username string
Pools map[string]bool
Nodes map[string]bool
VMID struct {
Min int
Max int
}
}