Update app.py
Browse files
app.py
CHANGED
@@ -5,6 +5,10 @@ import subprocess
|
|
5 |
|
6 |
app = Flask(__name__)
|
7 |
|
|
|
|
|
|
|
|
|
8 |
@app.route('/api/audio_separation', methods=['GET'])
|
9 |
def audio_separation():
|
10 |
# 获取MP3文件的直链地址
|
|
|
5 |
|
6 |
app = Flask(__name__)
|
7 |
|
8 |
+
@app.route('/', methods=['GET'])
|
9 |
+
def hello():
|
10 |
+
return "Hello! This is an api server, and it is running successfully. For usage, please contact the person who hosted this api server."
|
11 |
+
|
12 |
@app.route('/api/audio_separation', methods=['GET'])
|
13 |
def audio_separation():
|
14 |
# 获取MP3文件的直链地址
|