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