aboutsummaryrefslogtreecommitdiff
path: root/src/actions.lua
diff options
context:
space:
mode:
authorAutumn <git@autumnfo.rest>2026-05-17 15:12:52 +0100
committerAutumn <git@autumnfo.rest>2026-05-17 15:12:52 +0100
commit0d148f65e0eead4a2ea164d22ff844db428ebdb6 (patch)
tree01b0b5d50a9ea7bdfce2278c2f4d2baba9af987b /src/actions.lua
parent177f3214d3115a5f38e139cff3963d7fb11b439a (diff)
[main] added placeholder echo & service fetching utils
Diffstat (limited to 'src/actions.lua')
-rw-r--r--src/actions.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/actions.lua b/src/actions.lua
new file mode 100644
index 0000000..e651854
--- /dev/null
+++ b/src/actions.lua
@@ -0,0 +1,27 @@
+--
+-- ~~~ selenepaw actions
+--
+
+-- load help messages
+local help = require("src/help")
+
+-- 0000: echo
+function echo ()
+
+ help.echo()
+
+end
+
+-- 0001: fetch service
+function fetchservice ()
+
+ help.fetchservice ()
+
+end
+
+-- return
+return {
+ echo = echo,
+
+ fetchservice = fetchservice
+}