shiori/internal/database/sqlite.go

12 lines
194 B
Go
Raw Normal View History

2019-05-21 11:31:40 +08:00
package database
import (
"github.com/jmoiron/sqlx"
)
// SQLiteDatabase is implementation of Database interface
// for connecting to SQLite3 database.
type SQLiteDatabase struct {
sqlx.DB
}