7 lines
123 B
Python
7 lines
123 B
Python
|
from core import app
|
||
|
from tools.initializer import init_logger
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
init_logger()
|
||
|
app.run()
|