2014-04-26 09:18:56 +00:00
|
|
|
package Scheme
|
|
|
|
|
2015-06-17 15:44:52 +00:00
|
|
|
// Type for the listener entries at the database.
|
2014-04-26 09:18:56 +00:00
|
|
|
type Listener struct {
|
|
|
|
Channel string `bson:"Channel"`
|
|
|
|
Command string `bson:"Command"`
|
|
|
|
IsActive bool `bson:"IsActive"`
|
|
|
|
IPAddressPort string `bson:"IPAddressPort"`
|
2015-07-13 08:44:03 +00:00
|
|
|
Kind byte `bson:"Kind"`
|
2014-04-26 09:18:56 +00:00
|
|
|
}
|