diff --git a/pg/pg.go b/pg/pg.go index d375644..3d92b49 100644 --- a/pg/pg.go +++ b/pg/pg.go @@ -9,7 +9,6 @@ import ( type PgxQuerier interface { Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) - QueryRow(ctx context.Context, sql string, args ...any) (pgx.Row, error) } // Query executes query on a provided querier and tries to parse db response