mirror of
https://github.com/Roznoshchik/Lurnby.git
synced 2022-02-12 01:46:21 +03:00
8 lines
134 B
Python
8 lines
134 B
Python
from app import create_app
|
|
from config import Config
|
|
|
|
app = create_app(config_class=Config)
|
|
|
|
if __name__ == "__main__":
|
|
app.run()
|