📜  在 react 中使用烧瓶提供静态音频文件 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:07.040000             🧑  作者: Mango

代码示例1
  



@app.route('/files/')
def send_file(path):
    return send_from_directory('files', path)