| 1 | import { Global, Module } from '@nestjs/common' |
| 2 | import { ShortLinkController } from './short-link.controller' |
| 3 | import { ShortLinkService } from './short-link.service' |
| 4 | |
| 5 | @Global() |
| 6 | @Module({ |
| 7 | controllers: [ShortLinkController], |
| 8 | providers: [ShortLinkService], |
| 9 | exports: [ShortLinkService], |
| 10 | }) |
| 11 | export class ShortLinkModule {} |
| 12 |