1// Code generated by sqlc. DO NOT EDIT.
2// versions:
3// sqlc v1.27.0
4
5package db
6
7import (
8 "context"
9)
10
11type Querier interface {
12 // sqlfluff:dialect:sqlite
13 CreateSession(ctx context.Context, arg CreateSessionParams) (Session, error)
14 DeleteSession(ctx context.Context, id string) error
15 GetSessionByID(ctx context.Context, id string) (Session, error)
16 ListSessions(ctx context.Context) ([]Session, error)
17 UpdateSession(ctx context.Context, arg UpdateSessionParams) (Session, error)
18}
19
20var _ Querier = (*Queries)(nil)