You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
synctv/internal/bootstrap/sqlite_cgo.go

14 lines
174 B
Go

//go:build cgo
// +build cgo
package bootstrap
import (
"gorm.io/driver/sqlite"
"gorm.io/gorm"
)
func openSqlite(dsn string) gorm.Dialector {
return sqlite.Open(dsn)
}