import { redirect } from "@sveltejs/kit";
import { repository } from "../../../package.json" with { type: "json" };

export const GET = () => {
  throw redirect(307, repository.url);
};