summaryrefslogtreecommitdiffstats
path: root/internal/api/api.go
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-10-01 03:09:25 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-10-01 03:09:25 -0700
commit298f4b4634026f268ad74dadccbca8127ab83076 (patch)
tree634c5602d32ac4c850fa2ec9619ff1cdef8f2cb5 /internal/api/api.go
parentc2ca26a918b7054199234e8459d84ee2fd260759 (diff)
downloadroseh.moe-298f4b4634026f268ad74dadccbca8127ab83076.tar.zst
Fix the n^2 using a linked list
Diffstat (limited to 'internal/api/api.go')
-rw-r--r--internal/api/api.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/api/api.go b/internal/api/api.go
index b925a7a..88a0011 100644
--- a/internal/api/api.go
+++ b/internal/api/api.go
@@ -39,6 +39,7 @@ type ListNotesResponse struct {
type CreateNoteRequest struct {
ContinuationToken []byte
Chunk []byte
+ More bool
}
type CreateNoteResponse struct {