feat: 🎉 Rating Orama!

This commit is contained in:
2023-04-09 06:45:27 +02:00
commit b2f4b573f3
61 changed files with 8130 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
from flask import Flask
from routes.ping import ping
from routes.tv_show_routes import tv_show_bp
app = Flask(__name__)
app.register_blueprint(tv_show_bp)
app.register_blueprint(ping)
version = '0.1.0'
appName = 'Rating Orama Harvester'
author = 'Pedro Pérez'
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000)