9 lines
187 B
Python
9 lines
187 B
Python
|
from tests.Application import Application
|
||
|
from tests.Startup import Startup
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
app = Application()
|
||
|
app.use_startup(Startup)
|
||
|
app.build()
|
||
|
app.run()
|