blob: 0df6c51a2ed3fb1cdddb25a3082c2338fc845bc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
}
|