diff --git a/packages/contracts/src/core/index.ts b/packages/contracts/src/core/index.ts index 8a0de162..64384633 100644 --- a/packages/contracts/src/core/index.ts +++ b/packages/contracts/src/core/index.ts @@ -14,6 +14,13 @@ export const CORE: unique symbol = Symbol('@aedart/contracts/core'); */ export const APPLICATION: symbol = CORE; +/** + * Application Environment binding identifier + * + * @type {Symbol} + */ +export const APP_ENV: unique symbol = Symbol('APP_ENV'); + import Application from "./Application"; import Bootstrapper from "./Bootstrapper"; import BootstrapperConstructor from "./BootstrapperConstructor";