import { Module } from '@nestjs/common';
import { AuthController } from './auth.controller';
import { WebhooksController } from './webhooks.controller';
import { ShopifyAuthService } from './shopify-auth.service';

@Module({
  controllers: [AuthController, WebhooksController],
  providers: [ShopifyAuthService],
  exports: [ShopifyAuthService],
})
export class AuthModule {}
