mctl/model/data.go
jake fe37cac2da lots o progress
- added 'command' subcommand
- removed viper
- setup commands added
- still a WIP
- readme TODO update
2025-06-17 23:12:49 -04:00

14 lines
244 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"`
}