2014-09-19 11:29:23 +03:00
|
|
|
-- Buildat: extension/test/init.lua
|
2014-09-21 01:20:43 +03:00
|
|
|
-- http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
-- Copyright 2014 Perttu Ahola <celeron55@gmail.com>
|
2014-09-19 14:50:25 +03:00
|
|
|
local log = buildat.Logger("extension/test")
|
2014-09-19 11:29:23 +03:00
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
function M.f()
|
|
|
|
log:info("Unsafe f() called")
|
|
|
|
end
|
|
|
|
|
|
|
|
M.safe = {}
|
|
|
|
|
|
|
|
function M.safe.f()
|
|
|
|
log:info("Safe f() called")
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|