This commit is contained in:
Mike Schwörer 2022-12-07 23:25:21 +01:00
parent f3700a772d
commit 1a9e5c70fc
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF

View File

@ -12,6 +12,7 @@ type DB interface {
Query(ctx context.Context, sql string, prep PP) (*sqlx.Rows, error)
Ping(ctx context.Context) error
BeginTransaction(ctx context.Context, iso sql.IsolationLevel) (Tx, error)
SetListener(listener Listener)
}
type database struct {