mirror of
https://github.com/pocketbase/pocketbase.git
synced 2025-03-20 22:36:00 +02:00
10 lines
220 B
Go
10 lines
220 B
Go
|
//go:build nodefaultdriver
|
||
|
|
||
|
package core
|
||
|
|
||
|
import "github.com/pocketbase/dbx"
|
||
|
|
||
|
func DefaultDBConnect(dbPath string) (*dbx.DB, error) {
|
||
|
panic("DBConnect config option must be set when the nodefaultdriver tag is used!")
|
||
|
}
|