mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-25 05:00:16 +00:00
470c7a136f
Signed-off-by: Sean Norwood <norwood.sean@gmail.com>
7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
import type { LoaderArgs } from "@remix-run/server-runtime";
|
|
import { logout } from "~/session.server";
|
|
|
|
export const loader = async ({ request }: LoaderArgs) => {
|
|
return logout(request);
|
|
};
|