fix: Correct Pest grammar and update ItemService initialization

Co-authored-by: aider (openai/andrew/openrouter/sonoma-sky-alpha) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-09-10 16:14:00 -03:00
parent 84bf7ac5f4
commit 0d68f39c08
4 changed files with 27 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
WHITESPACE = _{ " " | "\t" | "\n" | "\r" }
// This Pest grammar defines the syntax for filter chains used in the Keep application.
//! This Pest grammar defines the syntax for filter chains used in the Keep application.
// Main entry point for parsing multiple filters separated by pipes
filters = { SOI ~ filter ~ (pipe ~ filter)* ~ EOI }