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