mirror of
https://github.com/sst/opencode.git
synced 2025-08-04 05:28:16 +00:00
20 lines
523 B
Go
20 lines
523 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.27.0
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Querier interface {
|
|
// sqlfluff:dialect:sqlite
|
|
CreateSession(ctx context.Context, arg CreateSessionParams) (Session, error)
|
|
DeleteSession(ctx context.Context, id string) error
|
|
GetSessionByID(ctx context.Context, id string) (Session, error)
|
|
ListSessions(ctx context.Context) ([]Session, error)
|
|
UpdateSession(ctx context.Context, arg UpdateSessionParams) (Session, error)
|
|
}
|
|
|
|
var _ Querier = (*Queries)(nil)
|