8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
// Nextcloud/ownCloud mimicry
|
|
export function handler(): Response {
|
|
return new Response('Redirecting...', {
|
|
status: 307,
|
|
headers: { Location: '/dav' },
|
|
});
|
|
}
|