This is an example of what i'm trying to achieve... I'm wondering if there is something like this in sveltekit without creating a separate file to handle the "GET_2" endpoint.
// +server.tsexport const GET: RequestHandler = async () => { // ...stuff};export const GET_2: RequestHandler = async () => { // ...stuff};