import type { HttpContext } from '@adonisjs/core/http'
import jwtService from '#services/jwt_service'

export default class JwksController {
  async show(_ctx: HttpContext) {
    return jwtService.getJwks()
  }
}
