-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0864600
commit c882c22
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { error } from '@sveltejs/kit'; | ||
|
||
export async function GET() { | ||
const schemaURL = "https://raw.githubusercontent.com/gttp-cli/gttp/main/schema.json"; | ||
|
||
try { | ||
const response = await fetch(schemaURL); | ||
if (!response.ok) { | ||
throw new Error('Failed to fetch schema'); | ||
} | ||
const data = await response.json(); | ||
|
||
return new Response(JSON.stringify(data), { | ||
headers: { | ||
'Content-Type': 'application/json' | ||
} | ||
}); | ||
} catch (e) { | ||
// Handle errors or invalid responses | ||
throw error(500, `Error fetching schema: ${e.message}`); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
# $schema: | ||
# $schema: https://gttp.dev/schema |