1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2025-01-01 03:48:20 +01:00
antd-web-apps/apps/silk/Template.lua

21 lines
328 B
Lua
Raw Normal View History

2018-08-21 15:16:36 +02:00
-- 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