summaryrefslogtreecommitdiff
path: root/global
diff options
context:
space:
mode:
authorbpc2003 <wpesfriendnva@gmail.com>2025-05-24 13:32:57 -0400
committerbpc2003 <wpesfriendnva@gmail.com>2025-05-24 13:32:57 -0400
commit1a90e3410a9bdaf606a6124930a0913c07b44c87 (patch)
tree0c48ad326663b876ab44af37e5d2a0b8d95cca57 /global
parentf8d0e88585226138b7b17e5f74105dd4abe63559 (diff)
Split builtin commands to separate modules
Diffstat (limited to 'global')
-rw-r--r--global/global.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/global/global.go b/global/global.go
new file mode 100644
index 0000000..610fa38
--- /dev/null
+++ b/global/global.go
@@ -0,0 +1,7 @@
+package global
+
+var Options []string
+
+func init() {
+ Options = make([]string, 0)
+}