1------------------------------------------------------------------------------
2--
3--  LGI Lua-side core.
4--
5--  Copyright (c) 2011 Pavel Holejsovsky
6--  Licensed under the MIT license:
7--  http://www.opensource.org/licenses/mit-license.php
8--
9------------------------------------------------------------------------------
10
11-- This is simple forwarder to real package 'lgi/init.lua'.  Normally,
12-- lgi/init.lua could suffice, but this file is needed for two
13-- reasons:
14-- 1) Running uninstalled, because Lua unfortunately does not contain
15--    './?/init.lua' component in its package.path
16-- 2) Upgrading older installations (<0.2), where lgi.lua was the only
17--    installed file, it would take precedence over 'lgi/init.lua'.
18
19return require 'lgi.init'
20