9 lines
114 B
Go
9 lines
114 B
Go
|
// +build postgres
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
_ "github.com/jinzhu/gorm/dialects/postgres"
|
||
|
_ "github.com/lib/pq"
|
||
|
)
|