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