mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 15:07:33 +02:00
10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'
|
|
|
|
export default class TermsController {
|
|
|
|
async index({ view }: HttpContextContract) {
|
|
return view.render('terms')
|
|
}
|
|
|
|
}
|