summaryrefslogtreecommitdiff
path: root/tests/actions/addon/custom-module/modules/greeting.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/actions/addon/custom-module/modules/greeting.lua')
-rw-r--r--tests/actions/addon/custom-module/modules/greeting.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/actions/addon/custom-module/modules/greeting.lua b/tests/actions/addon/custom-module/modules/greeting.lua
new file mode 100644
index 000000000..843dddfc2
--- /dev/null
+++ b/tests/actions/addon/custom-module/modules/greeting.lua
@@ -0,0 +1,3 @@
+function main(name)
+ return "hello from custom-module: " .. name
+end