10 lines
167 B
Lua
10 lines
167 B
Lua
|
local root = {_tags={}}
|
||
|
|
||
|
function root:tags()
|
||
|
return root._tags
|
||
|
end
|
||
|
|
||
|
return root
|
||
|
|
||
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|