Assist_Design/apps/bff/src/vendors/freebit/freebit.module.ts
tema 05817e8c67 Refactor code for improved readability and consistency across components
- Standardized import statements and formatting in various files for better code clarity.
- Enhanced error messages and logging for improved debugging and user experience.
- Adjusted whitespace and line breaks in multiple components to follow best practices.
- Updated environment variable handling and configuration for consistency across services.
2025-09-09 15:45:03 +09:00

9 lines
205 B
TypeScript

import { Module } from "@nestjs/common";
import { FreebititService } from "./freebit.service";
@Module({
providers: [FreebititService],
exports: [FreebititService],
})
export class FreebititModule {}