2014-04-26 09:18:56 +00:00
|
|
|
package Scheme
|
|
|
|
|
2015-06-17 15:44:52 +00:00
|
|
|
// Scheme for the host database entry.
|
2014-04-26 09:18:56 +00:00
|
|
|
type Host struct {
|
|
|
|
Hostname string `bson:"Hostname"`
|
|
|
|
IPAddressPort string `bson:"IPAddressPort"`
|
2015-07-13 08:44:03 +00:00
|
|
|
Kind byte `bson:"Kind"`
|
2014-04-26 09:18:56 +00:00
|
|
|
}
|