mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-11-01 18:32:34 +08:00
12 lines
122 B
Go
12 lines
122 B
Go
//go:build sqlite
|
|
|
|
package db
|
|
|
|
import (
|
|
"github.com/glebarez/sqlite"
|
|
)
|
|
|
|
func init() {
|
|
Factory["sqlite"] = sqlite.Open
|
|
}
|