mirror-nourybot/pkg/db/typings.go
2021-10-29 21:55:19 +02:00

13 lines
282 B
Go

package db
type Channel struct {
Name string `bson:"name,omitempty"`
Connect bool `bson:"connect,omitempty"`
}
// type Command struct {
// Name string `bson:"name,omitempty"`
// Text string `bson:"text,omitempty"`
// Channel string `bson:"channel,omitempty"`
// }