You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
293 B
Python

from flask import Flask
2 months ago
from helpers.favorites import db_init_favorites_table
from routes.web import web
from routes.api import api
3 months ago
2 months ago
app = Flask(__name__)
app.register_blueprint(web)
app.register_blueprint(api)
3 months ago
3 months ago
if __name__ == "__main__":
db_init_favorites_table()
2 months ago
app.run(debug=True)