mirror of
http://aero2k.de/t/repos/urlbot-native.git
synced 2017-09-06 15:25:38 +02:00
14 lines
243 B
Python
14 lines
243 B
Python
#!/usr/bin/python
|
|
|
|
if '__main__' == __name__:
|
|
print '''this is a config file, which is not meant to be executed'''
|
|
exit(-1)
|
|
|
|
config = {}
|
|
config['src-url'] = 'FIXME'
|
|
|
|
def conf(val):
|
|
if val in config.keys():
|
|
return config[val]
|
|
return None
|