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