neptune-back/src/crypto/crypto.module.ts
Mathis 8ea217fe9f
Normalize quote usage in imports
Standardized the quote style to double quotes across all TypeScript files for consistency. This includes ".ts" and ".dto" files.
2024-11-12 13:37:29 +01:00

10 lines
253 B
TypeScript

import { Module } from "@nestjs/common";
import { CryptoController } from "./crypto.controller";
import { CryptoService } from "./crypto.service";
@Module({
providers: [CryptoService],
controllers: [CryptoController],
})
export class CryptoModule {}