aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/help.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/help.lua b/src/help.lua
new file mode 100644
index 0000000..0df6c51
--- /dev/null
+++ b/src/help.lua
@@ -0,0 +1,18 @@
+--
+-- ~~~ help messages
+--
+
+-- main function
+function main ()
+
+ print("\nSelenePaw - a Lua-based PawSD utility.")
+ print("\nCurrently this util does nothing, but here are some planned features:")
+ print("* echo-ing a service")
+ print("* fetching a service's records\n")
+
+end
+
+-- return
+return {
+ main = main
+}