9 lines
123 B
Go
9 lines
123 B
Go
|
// +build !postgres
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
_ "github.com/jinzhu/gorm/dialects/sqlite"
|
||
|
_ "github.com/mattn/go-sqlite3"
|
||
|
)
|