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.go

14 lines
181 B
Go

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