mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
27 lines
310 B
Go
27 lines
310 B
Go
package test
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/jmoiron/sqlx"
|
|
_ "github.com/mattn/go-sqlite3"
|
|
)
|
|
|
|
func InitDB() *sqlx.DB {
|
|
|
|
bp := "./"
|
|
ebp := os.Getenv("BASEPATH")
|
|
|
|
if ebp != "" {
|
|
bp = ebp + "test/"
|
|
}
|
|
|
|
db, err := sqlx.Open("sqlite3", bp+"test.db")
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
|
|
return db
|
|
}
|