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"` }