diff options
Diffstat (limited to 'app/acf-util/welcome-controller.lua')
-rw-r--r-- | app/acf-util/welcome-controller.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/acf-util/welcome-controller.lua b/app/acf-util/welcome-controller.lua new file mode 100644 index 0000000..77735ec --- /dev/null +++ b/app/acf-util/welcome-controller.lua @@ -0,0 +1,10 @@ +-- A standin controller for testing +module (..., package.seeall) + +default_action = "read" + +read = function (self ) + return ( {self = self} ) +end + + |