mirror of
https://github.com/lxsang/antd-web-apps
synced 2024-11-20 02:18:20 +01:00
7 lines
133 B
Lua
7 lines
133 B
Lua
-- This is the base model class
|
|
require("OOP")
|
|
-- create class
|
|
BaseView = Object:inherit{db=nil, name=''}
|
|
|
|
function BaseView:do()
|
|
end |