mirror of
https://github.com/JoseDeFreitas/awesome-youtubers.git
synced 2024-10-01 01:06:03 -04:00
16 lines
222 B
Python
16 lines
222 B
Python
from flask import Flask
|
|
from api.api import api_channels
|
|
|
|
app = Flask(__name__)
|
|
|
|
app.register_blueprint(api_channels)
|
|
|
|
|
|
@app.route("/")
|
|
def main():
|
|
return "Working"
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run(debug=True)
|