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 }