8 lines
168 B
Go
8 lines
168 B
Go
package Scheme
|
|
|
|
// Scheme for the host database entry.
|
|
type Host struct {
|
|
Hostname string `bson:"Hostname"`
|
|
IPAddressPort string `bson:"IPAddressPort"`
|
|
}
|