fgrosse / sqlite-memory

Sqlite backend for joe-bot memory interface.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 persistant DB:

b := &ExampleBot{
	Bot: joe.New("example", sqlite.Memory("file:example.db")),
}

About

Sqlite backend for joe-bot memory interface.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Go 100.0%