import { Module } from '@nestjs/common';
import { XeroTestingService } from './xero-testing.service';
import { XeroTestingController } from './xero-testing.controller';

@Module({
  controllers: [XeroTestingController],
  providers: [XeroTestingService],
})
export class XeroTestingModule {}
