1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-12-29 02:38:22 +01:00
antd-web-apps/apps/silk/Template.lua
2018-08-21 15:16:36 +02:00

21 lines
328 B
Lua

-- This is the base model class
require("OOP")
-- create class
Template = Object:extends{registry = {}}
function Template:initialize()
self.vars = {}
end
function Template:set(k, v, ow)
end
function Template:remove(k)
end
-- infer view path
function setView(name, controller)
end
-- render the page
function render()
end