mirror of
https://github.com/mudler/LocalAI
synced 2026-05-24 09:28:23 +00:00
13 lines
181 B
Go
13 lines
181 B
Go
|
|
//go:build auth
|
||
|
|
|
||
|
|
package auth
|
||
|
|
|
||
|
|
import (
|
||
|
|
"gorm.io/driver/sqlite"
|
||
|
|
"gorm.io/gorm"
|
||
|
|
)
|
||
|
|
|
||
|
|
func openSQLiteDialector(path string) (gorm.Dialector, error) {
|
||
|
|
return sqlite.Open(path), nil
|
||
|
|
}
|