from . import bp
import os

@bp.route("/testedir/", methods=["GET"])
def testedir():
    current_dir = os.getcwd()
    return f"Diretório atual: {current_dir}"
