Upgrade to kit v0.3.0

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2026-04-03 10:56:06 +02:00
parent 8adf26ad20
commit f17fb7bf49
191 changed files with 1617 additions and 1617 deletions

View File

@@ -37,7 +37,7 @@ type (
func (co ControlObligation) Upsert(
ctx context.Context,
conn pg.Conn,
conn pg.Querier,
scope Scoper,
) error {
q := `
@@ -69,7 +69,7 @@ ON CONFLICT (control_id, obligation_id) DO NOTHING;
func (co ControlObligation) Delete(
ctx context.Context,
conn pg.Conn,
conn pg.Tx,
scope Scoper,
controlID gid.GID,
obligationID gid.GID,
@@ -97,7 +97,7 @@ WHERE
func (cos *ControlObligations) CountByControlID(
ctx context.Context,
conn pg.Conn,
conn pg.Querier,
scope Scoper,
controlID gid.GID,
filter *ControlObligationFilter,