Uncomment pack in init

This commit is contained in:
2021-06-21 09:26:11 +00:00
parent c5f4e9b838
commit 8f8d206ce4

View File

@@ -5,7 +5,7 @@ from pack import Pack
class App: class App:
def __init__(self): def __init__(self):
#self.pack = Pack() self.pack = Pack()
print("Done") print("Done")
self.app = web.Application() self.app = web.Application()
self.app.add_routes([web.post('/update', self.updatePack)]) self.app.add_routes([web.post('/update', self.updatePack)])