6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
export const SHARED_TOKENS = {
|
|
// Infrastructure services
|
|
TASKER: Symbol("ITasker"),
|
|
LOGGER: Symbol("ILogger"),
|
|
} as const;
|