You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
345 B
28 lines
345 B
9 years ago
|
#!/usr/bin/python
|
||
|
# -*- coding: UTF-8 -*-
|
||
|
|
||
|
config = None
|
||
|
|
||
|
def load_config():
|
||
|
global config
|
||
|
try:
|
||
|
import userapiconfig
|
||
|
reload(userapiconfig)
|
||
|
config = userapiconfig
|
||
|
return
|
||
|
except:
|
||
|
pass
|
||
|
try:
|
||
|
import apiconfig
|
||
|
reload(apiconfig)
|
||
|
config = apiconfig
|
||
|
except:
|
||
|
pass
|
||
|
|
||
|
def get_config():
|
||
|
global config
|
||
|
return config
|
||
|
|
||
|
load_config()
|
||
|
|