Ocean/ICCC/Scheme/Listener.go

11 lines
300 B
Go
Raw Normal View History

package Scheme
2015-06-17 15:44:52 +00:00
// Type for the listener entries at the database.
type Listener struct {
Channel string `bson:"Channel"`
Command string `bson:"Command"`
IsActive bool `bson:"IsActive"`
IPAddressPort string `bson:"IPAddressPort"`
Kind byte `bson:"Kind"`
}