mirror of
https://github.com/Radiquum/YAMPD.git
synced 2025-09-08 15:33:57 +05:00
feat: pack creating
This commit is contained in:
parent
5be021789b
commit
af7b8a6fea
27 changed files with 677 additions and 130 deletions
|
@ -2,8 +2,13 @@ from flask import Flask
|
|||
from flask import render_template, redirect, url_for, send_file, abort
|
||||
from flaskwebgui import FlaskUI # import FlaskUI
|
||||
import os
|
||||
from flask_cors import CORS
|
||||
|
||||
from api import api
|
||||
|
||||
app = Flask(__name__)
|
||||
app.register_blueprint(api)
|
||||
CORS(app, resources={r"/*": {"origins": "*"}})
|
||||
|
||||
|
||||
@app.route("/")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue