README.md

October 1, 2019 ยท View on GitHub

Joe Bot - Sqlite Storage

Sqlite memory adapater. https://github.com/go-joe/joe

Sqlite memory backend for: https://github.com/go-joe/joe

Examples

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")),
}