Mercurial Hosting > freedit
annotate src/init.luan @ 45:2d4f00755092
bcode editor work
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 13 Nov 2022 22:07:18 -0700 |
parents | 7c64173643c8 |
children |
rev | line source |
---|---|
1 | 1 local Luan = require "luan:Luan.luan" |
2 local error = Luan.error | |
3 local load = Luan.load or error() | |
4 local Config = require "site:/lib/Config.luan" | |
5 local Logging = require "luan:logging/Logging.luan" | |
6 local logger = Logging.logger "init" | |
7 | |
8 local fn = load(Config.text,"config") | |
9 fn() | |
10 | |
11 return true |