From 298f4b4634026f268ad74dadccbca8127ab83076 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Wed, 1 Oct 2025 03:09:25 -0700 Subject: Fix the n^2 using a linked list --- internal/api/api.go | 1 + 1 file changed, 1 insertion(+) (limited to 'internal/api/api.go') 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 { -- cgit v1.3.1