mctl/model/data.go
jake 2045a75d68 [fix] bugfixes from testing
- sqlite wrapper func context bug
2025-06-19 15:05:09 -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"`
Active bool `db:"active"`
}