mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import { ContextId } from './instance-wrapper';
|
|
|
|
export const CONTROLLER_ID_KEY = 'CONTROLLER_ID';
|
|
|
|
const STATIC_CONTEXT_ID = 1;
|
|
export const STATIC_CONTEXT: ContextId = Object.freeze({
|
|
id: STATIC_CONTEXT_ID,
|
|
});
|