Sqlite memory adapater. https://github.com/go-joe/joe
Sqlite memory backend for: https://github.com/go-joe/joe
b := &ExampleBot{
Bot: joe.New("example", sqlite.Memory(":memory:")),
}
or for a persistent DB:
b := &ExampleBot{
Bot: joe.New("example", sqlite.Memory("file:example.db")),
}