mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-10-06 11:26:51 +08:00
15 lines
189 B
Go
15 lines
189 B
Go
//go:build sqlite
|
|
|
|
package db
|
|
|
|
import (
|
|
"github.com/glebarez/sqlite"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func init() {
|
|
Factory["sqlite"] = func(dsn string) gorm.Dialector {
|
|
return sqlite.Open(dsn)
|
|
}
|
|
}
|