import { Global, Module } from '@nestjs/common';
import { OrderAttributionService } from './order-attribution.service';

/** Global so both the webhook (auth module) and sync-orders (integrations) can reuse it. */
@Global()
@Module({
  providers: [OrderAttributionService],
  exports: [OrderAttributionService],
})
export class OrdersModule {}
