Mercurial Hosting > freedit
comparison src/lib/Config.luan @ 1:7c64173643c8
start config
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 15 Jun 2022 20:59:13 -0600 |
parents | |
children | fc2383eb48a9 |
comparison
equal
deleted
inserted
replaced
0:6a1e2749571d | 1:7c64173643c8 |
---|---|
1 local Luan = require "luan:Luan.luan" | |
2 local error = Luan.error | |
3 | |
4 local Config = {} | |
5 | |
6 Config.default_text = [[ | |
7 local Forum = require "site:/lib/Forum.luan" | |
8 | |
9 Forum.title = "Your Forum" | |
10 ]] | |
11 | |
12 Config.text = Config.default_text | |
13 | |
14 return Config |