15 lines
275 B
Go
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"`
|
|
}
|