mirror of
https://github.com/RYGhub/royalnet.git
synced 2025-04-07 07:30:30 +00:00
* Una possibile idea che sto per eliminare * Woah, this is progress * Well, this works * im lost * OMFG IT WORKS
15 lines
267 B
Python
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()
|