aboutsummaryrefslogtreecommitdiff
path: root/src/actions.lua
blob: e6518544fb1adceccb554cec1739bf39deba6fb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
}