(ctx context.Context, uuid string)
| 89 | ` |
| 90 | |
| 91 | func (q *Queries) DeleteSession(ctx context.Context, uuid string) error { |
| 92 | _, err := q.db.ExecContext(ctx, deleteSession, uuid) |
| 93 | return err |
| 94 | } |
| 95 | |
| 96 | const getSession = `-- name: GetSession :one |
| 97 | SELECT uuid, username, email, name, provider, totp_pending, oauth_groups, expiry, created_at, oauth_name, oauth_sub FROM "sessions" |
no test coverage detected