summaryrefslogtreecommitdiff
path: root/lib/gall.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gall.lua')
-rw-r--r--lib/gall.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/gall.lua b/lib/gall.lua
index 4a2dbb8..a2f613a 100644
--- a/lib/gall.lua
+++ b/lib/gall.lua
@@ -10,8 +10,26 @@ local ABI_VERSION = 0
local VERSION = "Gall v1." .. tostring(API_VERSION)
+local util = require "gall.util"
+local ll = require "gall.ll"
+
+local repository = require "gall.repository"
+local tag = require "gall.tag"
+local commit = require "gall.commit"
+local tree = require "gall.tree"
+local object = require "gall.object"
+
return {
_API_VERSION = API_VERSION,
_ABI_VERSION = ABI_VERSION,
VERSION = VERSION,
+
+ repository = repository,
+ tag = tag,
+ commit = commit,
+ tree = tree,
+ object = object,
+
+ ll = ll,
+ util = util,
}