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.
27 lines
345 B
27 lines
345 B
#!/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()
|
|
|
|
|