diff options
Diffstat (limited to 'src/actions.lua')
| -rw-r--r-- | src/actions.lua | 27 |
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 +} |
