import { Handler } from 'fresh/server.ts'; import { FreshContextState } from '/lib/types.ts'; interface Data {} export const handler: Handler = () => { return new Response('Redirecting...', { status: 301, headers: { 'Location': '/carddav' } }); };