We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d5cfb2 commit 270e6efCopy full SHA for 270e6ef
mylua.lua
@@ -30,8 +30,9 @@ function M.version() --module version(recommended addition)
30
return 1
31
end
32
33
-function M.post_fs_data()
+function M.post_fs_data(superkey)
34
info("post_mount_fs called")
35
+ info("suerpkey:"..superkey)
36
if is_lite_mode_enabled() then
37
info("Lite mode is enabled")
38
else
@@ -44,11 +45,15 @@ function M.post_fs_data()
44
45
46
47
-function M.post_mount()
48
+function M.post_mount(superkey)
49
info("post_mount called")
50
-function M.service()
51
+function M.service(superkey)
52
info("service called")
53
-
54
+function M.action()
55
+ info("action called")
56
+ print("this is action function")
57
+ os.execute("sleep 2")
58
+end
59
return M
0 commit comments