aboutsummaryrefslogtreecommitdiff
path: root/src/routes/api/subsplease/+server.ts
blob: d3e6bf997f67f396be4c163775c06b89e37cf1db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export const GET = async ({ url }) =>
	Response.json(
		await (
			await fetch(
				`https://subsplease.org/api/?f=schedule&tz=${
					url.searchParams.get('tz') || 'America/Los_Angeles'
				}`
			)
		).json()
	);