Skip to content

Instantly share code, notes, and snippets.

@thetutlage
thetutlage / context.ts
Last active December 1, 2024 09:00
Unploy Server API Abstraction for AdonisJS
import Up from './index'
declare module '@ioc:Adonis/Core/HttpContext' {
interface HttpContextContract {
up: Up
}
}