mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-09-27 05:35:57 +08:00
14 lines
209 B
Go
14 lines
209 B
Go
//go:build sqlite
|
|
|
|
package db
|
|
|
|
import (
|
|
//"github.com/glebarez/sqlite"
|
|
_ "github.com/ncruces/go-sqlite3/embed"
|
|
"github.com/ncruces/go-sqlite3/gormlite"
|
|
)
|
|
|
|
func init() {
|
|
Factory["sqlite"] = gormlite.Open
|
|
}
|