diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2025-10-01 03:09:25 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2025-10-01 03:09:25 -0700 |
| commit | 298f4b4634026f268ad74dadccbca8127ab83076 (patch) | |
| tree | 634c5602d32ac4c850fa2ec9619ff1cdef8f2cb5 /internal/api | |
| parent | c2ca26a918b7054199234e8459d84ee2fd260759 (diff) | |
| download | roseh.moe-298f4b4634026f268ad74dadccbca8127ab83076.tar.zst | |
Fix the n^2 using a linked list
Diffstat (limited to 'internal/api')
| -rw-r--r-- | internal/api/api.go | 1 |
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 { |
