]> git.llucax.com Git - software/pymin.git/blob - config.py
Bugfix: wrong variable usage.
[software/pymin.git] / config.py
1 # vim: set et sts=4 sw=4 encoding=utf-8 :
2
3 # XXX for testing only
4 def test_func(*args):
5     print 'func:', args
6
7 routes = dict \
8 (
9     test = test_func,
10 )
11
12 bind_addr = \
13 (
14     '',   # Bind IP ('' is ANY)
15     9999, # Port
16 )
17