4 lines
110 B
Python
4 lines
110 B
Python
from flask import jsonify, Response
|
|
|
|
def error(message:str) -> Response:
|
|
return jsonify({"error":message}) |