summaryrefslogtreecommitdiffhomepage
path: root/internal/db/querier.go
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-05-13 10:27:09 -0500
committeradamdottv <[email protected]>2025-05-13 10:27:09 -0500
commitae86ef519c5dc557914c29bd1786b1c87d8dcb95 (patch)
treee1b5f7bbeb74739c74055d205ad62181230f0b12 /internal/db/querier.go
parent2391e338b4e41726e7233e2bf027a62476140130 (diff)
downloadopencode-ae86ef519c5dc557914c29bd1786b1c87d8dcb95.tar.gz
opencode-ae86ef519c5dc557914c29bd1786b1c87d8dcb95.zip
chore: refactoring
Diffstat (limited to 'internal/db/querier.go')
-rw-r--r--internal/db/querier.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/querier.go b/internal/db/querier.go
index 08ad41ec7..7b089f021 100644
--- a/internal/db/querier.go
+++ b/internal/db/querier.go
@@ -11,7 +11,7 @@ import (
type Querier interface {
CreateFile(ctx context.Context, arg CreateFileParams) (File, error)
- CreateLog(ctx context.Context, arg CreateLogParams) error
+ CreateLog(ctx context.Context, arg CreateLogParams) (Log, error)
CreateMessage(ctx context.Context, arg CreateMessageParams) (Message, error)
CreateSession(ctx context.Context, arg CreateSessionParams) (Session, error)
DeleteFile(ctx context.Context, id string) error