summaryrefslogtreecommitdiff
path: root/lib/lace.lua
blob: 3822b380f956c3d234b140767982708c07617e03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- lib/lace.lua
--
-- Lua Access Control Engine
--
-- Copyright 2012 Daniel Silverstone <dsilvers@digital-scurf.org>
--
-- For licence terms, see COPYING
--

local lex = require "lace.lex"
local compiler = require "lace.compiler"
local builtin = require "lace.builtin"

return {
   lex = lex,
   compiler = compiler,
   builtin = builtin,
}