Files
middle-server/test2.py
2023-02-04 00:14:50 +08:00

24 lines
430 B
Python

from flask import Flask
app = Flask(__name__)
@app.route("/api/tracks")
def hello_tracks():
return "<p>Hello, tracks!</p>"
@app.route("/api/playlist/<playlist_id>/tracks")
def hello_playlist():
return "<p>Hello, playlist!</p>"
app.run(
host = '127.0.0.1',
port = 7777,
debug = True
)
if __name__== '__main__':
app.run(
host = '127.0.0.1',
port = 7777,
debug = True
)