mirror of
https://github.com/Buriburizaem0n/nezha_domains.git
synced 2026-09-19 09:40:12 +00:00
13 lines
190 B
Go
13 lines
190 B
Go
//go:build !agentcompat || !linux
|
|
|
|
package singleton
|
|
|
|
import (
|
|
"gorm.io/driver/sqlite"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func openSQLiteDialector(path string) gorm.Dialector {
|
|
return sqlite.Open(path)
|
|
}
|