11 lines
154 B
Python
11 lines
154 B
Python
import sys
|
|
|
|
from .config import load_config
|
|
|
|
if '--debug' in sys.argv:
|
|
load_config(debug=True)
|
|
else:
|
|
load_config()
|
|
|
|
from .server import TTFServer
|