mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-07 06:45:23 +02:00
9 lines
268 B
Plaintext
9 lines
268 B
Plaintext
import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'
|
|
|
|
export default class {{ filename }} {
|
|
public async handle({}: HttpContextContract, next: () => Promise<void>) {
|
|
// code for middleware goes here. ABOVE THE NEXT CALL
|
|
await next()
|
|
}
|
|
}
|