Compare commits

...

1 Commits

Author SHA1 Message Date
0880
c455adea07 Fix redirect 2026-01-21 13:39:40 +03:30

View File

@@ -331,7 +331,7 @@ def render(
def redirect(location: str): # TODO Move to another module def redirect(location: str): # TODO Move to another module
return Response(307, ["Location: {location}"], b"") return Response(307, [f"Location: {location}"], b"")
def JSONAPI(func): # TODO Move to another module def JSONAPI(func): # TODO Move to another module