add tasker module description and samples

This commit is contained in:
Evgeny
2022-06-10 07:33:22 +03:00
parent f661a31b7b
commit 17317c9247
5 changed files with 85 additions and 1 deletions

10
samples/tasker-test3.lua Normal file
View File

@@ -0,0 +1,10 @@
function on_resume()
ui:show_text("Click me")
end
function on_click()
tasker:run_task("Test", {
firstname = "John",
lastname = "Doe",
})
end