9 lines
180 B
Python
Executable File
9 lines
180 B
Python
Executable File
#!/usr/bin/python3
|
|
import os
|
|
|
|
from src.Application import Application
|
|
|
|
if __name__ == '__main__':
|
|
app = Application(project_dir=os.path.dirname(__file__)[:-2])
|
|
app.start()
|