From 35ec0f5afb9800b25bd813bccc57a16bc9f837c4 Mon Sep 17 00:00:00 2001 From: JP Appel Date: Mon, 28 Apr 2025 23:34:42 -0400 Subject: Add document output formatting --- pkg/query/parser.go | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 pkg/query/parser.go (limited to 'pkg/query/parser.go') diff --git a/pkg/query/parser.go b/pkg/query/parser.go deleted file mode 100644 index 355b18c..0000000 --- a/pkg/query/parser.go +++ /dev/null @@ -1,19 +0,0 @@ -package query - -type TokenType uint64 - -const ( - TOKEN_ERROR TokenType = iota - TOKEN_EOF - TOKEN_AND - TOKEN_OR - TOKEN_NOT - TOKEN_SIMILAR - TOKEN_STATEMENT - // TODO: consider adding regex token -) - -type Token struct { - Type TokenType - Content string -} -- cgit v1.2.3