mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
8 lines
201 B
TypeScript
8 lines
201 B
TypeScript
import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'
|
|
|
|
export default class HomeController {
|
|
|
|
async index ({ view }: HttpContextContract) {
|
|
return view.render('index')
|
|
}
|
|
} |