mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
12 lines
195 B
Go
12 lines
195 B
Go
//go:build sqlite
|
|
|
|
package db
|
|
|
|
import "github.com/glebarez/sqlite"
|
|
|
|
func init() {
|
|
Factory["sqlite"] = func(dsn string) gorm.Dialector {
|
|
return gorm.Open(sqlite.Open(dsn), &gorm.Config{})
|
|
}
|
|
}
|