11 lines
121 B
Go
11 lines
121 B
Go
package postgresql
|
|
|
|
import (
|
|
"github.com/jmoiron/sqlx"
|
|
)
|
|
|
|
type PostgresBackend struct {
|
|
*sqlx.DB
|
|
DatabaseURL string
|
|
}
|