Initial release
The following adapter interface with pgx.Conn, pgx.ConnPool, sql, and sqlx implementations:
type Adapter interface {
Exec(query string, args ...interface{}) error
SelectOne(dst interface{}, query string, args ...interface{}) error
}