This commit is contained in:
2021-03-12 20:37:31 +01:00
parent 6a1e7d4063
commit 3d001ade0a
7 changed files with 46 additions and 23 deletions

View File

@@ -1,8 +1,13 @@
from tests.custom.general.application import Application
from tests.custom.general.startup import Startup
if __name__ == '__main__':
def main():
app = Application()
app.use_startup(Startup)
app.build()
app.run()
if __name__ == '__main__':
main()