Files
gridpilot.gg/apps/website/lib/di/modules/landing.module.ts
2026-01-16 01:00:03 +01:00

12 lines
382 B
TypeScript

import { ContainerModule } from 'inversify';
import { LANDING_SERVICE_TOKEN } from '../tokens';
import { LandingService } from '@/lib/services/landing/LandingService';
export const LandingModule = new ContainerModule((options) => {
const bind = options.bind;
// Landing Service
bind<LandingService>(LANDING_SERVICE_TOKEN)
.to(LandingService)
.inSingletonScope();
});