mirror of
https://github.com/lxsang/antd-web-apps
synced 2025-04-17 09:16:44 +02:00
7 lines
145 B
Lua
7 lines
145 B
Lua
-- This is the base model class
|
|
require("OOP")
|
|
-- create class
|
|
BaseController = Object:inherit{db=nil, name=''}
|
|
|
|
function BaseController:do()
|
|
end |