mirror-nourybot/pkg/db/typings.go

13 lines
282 B
Go
Raw Normal View History

2021-10-28 18:04:05 +02:00
package db
type Channel struct {
Name string `bson:"name,omitempty"`
Connect bool `bson:"connect,omitempty"`
}
2021-10-29 21:55:19 +02:00
// type Command struct {
// Name string `bson:"name,omitempty"`
// Text string `bson:"text,omitempty"`
// Channel string `bson:"channel,omitempty"`
// }