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