mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 16:14:36 +00:00
7 lines
203 B
Python
7 lines
203 B
Python
from app import app
|
|
from models import Image
|
|
|
|
@app.route('/image/<int:id>')
|
|
def image(id):
|
|
image = Image.query.get_or_404(id)
|
|
return app.response_class(image.data, mimetype=image.encoding_format) |