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.

index.js 280B

12345678910111213141516
  1. import { profile } from './profile.js'
  2. const handlers = {
  3. default: {
  4. get: (request, h) => {
  5. return {
  6. ok: true,
  7. handler: 'default',
  8. data: {}
  9. }
  10. }
  11. },
  12. profile
  13. }
  14. export { handlers }