aboutsummaryrefslogtreecommitdiff
path: root/model/command.go
diff options
context:
space:
mode:
author2026-02-17 21:33:24 +0300
committer2026-02-21 16:23:10 +0300
commitba06314d59e55945b103ead2c7a9e01f58c6a93c (patch)
tree34ab8ac19307da60bd5caf76d844a6dc2e730361 /model/command.go
parentinit (diff)
downloadconf-ba06314d59e55945b103ead2c7a9e01f58c6a93c.tar.gz
conf-ba06314d59e55945b103ead2c7a9e01f58c6a93c.tar.bz2
conf-ba06314d59e55945b103ead2c7a9e01f58c6a93c.tar.xz
conf-ba06314d59e55945b103ead2c7a9e01f58c6a93c.zip
v0.0.1v0.0.1
Diffstat (limited to 'model/command.go')
-rw-r--r--model/command.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/model/command.go b/model/command.go
new file mode 100644
index 0000000..237e94f
--- /dev/null
+++ b/model/command.go
@@ -0,0 +1,9 @@
+package model
+
+type Command struct {
+ Name string
+ Arguments Values
+ Body *Doc
+}
+
+type Commands []*Command