move auth endpoint to separate file
parent
5bfc5bbb22
commit
dcaf72e700
@ -0,0 +1,7 @@
|
||||
export class Auth {
|
||||
async redirect(event) {
|
||||
event.respondWith(new Response(
|
||||
'extract query and redirect', {status: 200}
|
||||
))
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue