mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
export const Bounce = (url: string): Response =>
|
|
new Response(null, {
|
|
status: 303,
|
|
headers: {
|
|
location: url,
|
|
},
|
|
});
|