maddy

Fork https://github.com/foxcpp/maddy

git clone git://git.lin.moe/go/maddy.git

 1# Static table
 2
 3The 'static' module implements table lookups using key-value pairs in its
 4configuration.
 5
 6```
 7table.static {
 8	entry KEY1 VALUE1
 9	entry KEY2 VALUE2
10	...
11}
12```
13
14## Configuration directives
15
16### entry _key_ _value_
17
18Add an entry to the table.
19
20If the same key is used multiple times, the last one takes effect.
21