Skip to main content
Module

x/alosaur/src/models/context.ts

Alosaur - Deno web framework with many decorators
Go to Latest
File
import { ImmediatelyResponse } from "./response.ts";
/** * Main request/response object of */export class Context<T = any> { public state?: T; public readonly response: ImmediatelyResponse = new ImmediatelyResponse();}