Skip to content

Instantly share code, notes, and snippets.

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