13 lines
154 B
Go
13 lines
154 B
Go
package sqlite3
|
|
|
|
import (
|
|
"github.com/jmoiron/sqlx"
|
|
)
|
|
|
|
type SQLite3Backend struct {
|
|
*sqlx.DB
|
|
DatabaseURL string
|
|
MaxOpenConns int
|
|
MaxIdleConns int
|
|
}
|