* The bot now properly joins the management room * The management room is persisted in the database * Welcome/help messages are sent in the management room
6 lines
75 B
Go
6 lines
75 B
Go
package database
|
|
|
|
type Scannable interface {
|
|
Scan(...interface{}) error
|
|
}
|