16 lines
242 B
Go
16 lines
242 B
Go
package postgresql
|
|
|
|
import (
|
|
"github.com/jmoiron/sqlx"
|
|
)
|
|
|
|
type PostgresBackend struct {
|
|
*sqlx.DB
|
|
DatabaseURL string
|
|
QueryLimit int
|
|
QueryIDsLimit int
|
|
QueryAuthorsLimit int
|
|
QueryKindsLimit int
|
|
QueryTagsLimit int
|
|
}
|