streamflix-api / src /shared /modules /short-url /short-url.module.ts
Akshar2325
feat(short-url): Added Trim Kutt URL shortener integration with CRUD operations
2ed6bf1
Raw
History Blame
290 Bytes
import { Module } from '@nestjs/common';
import { ShlinkModule } from './shlink/shlink.module';
import { TrimKuttModule } from './trim-kutt/trim-kutt.module';
@Module({
imports: [ShlinkModule, TrimKuttModule],
exports: [ShlinkModule, TrimKuttModule],
})
export class ShortUrlModule {}