mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 16:14:36 +00:00
9 lines
178 B
Python
9 lines
178 B
Python
from flask import send_from_directory
|
|
|
|
from project import app, dump_path
|
|
|
|
|
|
@app.route("/dump/<path:path>")
|
|
def dump_files(path):
|
|
return send_from_directory(dump_path, path)
|