mirror of
https://github.com/go-shiori/shiori.git
synced 2024-11-16 22:25:13 +08:00
12 lines
194 B
Go
12 lines
194 B
Go
|
package database
|
||
|
|
||
|
import (
|
||
|
"github.com/jmoiron/sqlx"
|
||
|
)
|
||
|
|
||
|
// SQLiteDatabase is implementation of Database interface
|
||
|
// for connecting to SQLite3 database.
|
||
|
type SQLiteDatabase struct {
|
||
|
sqlx.DB
|
||
|
}
|