mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 15:07:33 +02:00
18 lines
428 B
TypeScript
18 lines
428 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')
|
|
}
|
|
|
|
async myNetwork({ view }: HttpContextContract) {
|
|
return view.render('projects/myNetwork/index')
|
|
}
|
|
|
|
}
|