mctl/model/data.go
jake c15c16be8d finishing sqlite changes
- finished default/active server logic
- dev done
- needs testing
2025-06-18 18:38:01 -04:00

15 lines
275 B
Go

package model
type Command struct {
Name string `db:"name"`
Command string `db:"command"`
}
type Server struct {
Name string `db:"name"`
Server string `db:"server"`
Password string `db:"password"`
Port int `db:"port"`
Default bool `db:"active"`
}