// import type { HttpContext } from '@adonisjs/core/http' export default class HomeController { public async index() { // TODO: Actually do something instead of alwayas returning success. return { hello: 'world' } } }