mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
12 lines
133 B
Go
12 lines
133 B
Go
//go:build sqliteCGO
|
|
|
|
package db
|
|
|
|
import (
|
|
sqlite "github.com/mattn/go-sqlite3"
|
|
)
|
|
|
|
func init() {
|
|
Factory["sqlite"] = sqlite.Open
|
|
}
|