const gitHubNamespace = "goauthentik"; exports.handler = async function (event, context) { let repo = ""; switch (event.path) { case "/": repo = "/authentik"; break; case "/api": repo = "/client-go"; break; default: repo = event.path; break; } return { statusCode: 200, headers: { "content-type": "text/html", }, body: `` }; }