From d3fd3ba6f9796df96ec4eae9124a460fbb05eb59 Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Mon, 16 Feb 2026 21:37:31 +0300 Subject: init --- model/doc.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 model/doc.go (limited to 'model/doc.go') diff --git a/model/doc.go b/model/doc.go new file mode 100644 index 0000000..76f03e4 --- /dev/null +++ b/model/doc.go @@ -0,0 +1,18 @@ +package model + +type Doc []any + +type Assignment struct { + Key string + Value []Value +} + +type Command struct { + Name string + Arguments []Value + Body Doc +} + +type Value any + +type Word string -- cgit v1.2.3