Discord bot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

log-in.ts 247 B

12345678910
  1. import {createDefaultAuth} from '../../../../utilities/auth'
  2. export default async (req, res) => {
  3. try {
  4. const auth = createDefaultAuth()
  5. await auth.handleLogin(req, res)
  6. } catch (err) {
  7. res.status(err.status || 500).end(err.message)
  8. }
  9. }