(ctx context.Context, sub string)
| 259 | ` |
| 260 | |
| 261 | func (q *Queries) DeleteOidcCodeBySub(ctx context.Context, sub string) error { |
| 262 | _, err := q.db.ExecContext(ctx, deleteOidcCodeBySub, sub) |
| 263 | return err |
| 264 | } |
| 265 | |
| 266 | const deleteOidcToken = `-- name: DeleteOidcToken :exec |
| 267 | DELETE FROM "oidc_tokens" |
no test coverage detected