1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-04-07 07:30:30 +00:00
royalnet/royalnet/royalgamesweb.py
Stefano Pigozzi a512da0058 Web is working ()
* Una possibile idea che sto per eliminare

* Woah, this is progress

* Well, this works

* im lost

* OMFG IT WORKS
2019-06-01 21:09:21 +02:00

15 lines
267 B
Python

import os
from .web import create_app
from .web.blueprints import helloworld, testing
class TestConfig:
DB_PATH = os.environ["DB_PATH"]
REQUIRED_TABLES = set()
app = create_app(TestConfig, [helloworld, testing])
if __name__ == "__main__":
app.run()