shiny-pancake/internal/model/forms.go
2020-11-08 19:37:07 -06:00

41 lines
570 B
Go

package model
type HostDetails struct {
Secret string `json:"secret"`
Hostname string `json:"hostname"`
DatabaseName string `json:"databaseName"`
Username string `json:"username"`
}
type Session struct {
Username string
Count int
}
type Guage struct {
I int
I1 int
}
type Table struct {
Headers []string
Q string
Rows [][]string
}
type TextBox struct {
Q string
Content []string
}
type Screen struct {
Count int
Queries []string
}
type Identification struct {
Dbname string
PGVersion string
DbQuery string
VersionQuery string
}