You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
287 B
Lua

local skynet = require "skynet"
local cjson = require "cjson"
require "functions"
local crystalmodel = class(crystalmodel)
function crystalmodel:ctor(data)
data = data or {}
end
function crystalmodel:serialize()
local info = {}
return info
end
return crystalmodel