* add sqlite3 storage * filter by content * remove needless files * update go.mod * do not unquote Search
11 lines
117 B
Go
11 lines
117 B
Go
package sqlite3
|
|
|
|
import (
|
|
"github.com/jmoiron/sqlx"
|
|
)
|
|
|
|
type SQLite3Backend struct {
|
|
*sqlx.DB
|
|
DatabaseURL string
|
|
}
|