Cleaned up agent command parsing

This commit is contained in:
Jakob Friedl
2025-07-15 22:38:01 +02:00
parent b8b276d887
commit 453971c0db
4 changed files with 111 additions and 139 deletions

View File

@@ -23,11 +23,11 @@ type
Copy = "copy"
ArgumentType* = enum
String = 0
Int = 1
Long = 2
Bool = 3
Binary = 4
String = "string"
Int = "int"
Long = "long"
Bool = "bool"
Binary = "binary"
Argument* = object
name*: string