api-client/packages/hoppscotch-backend/src/shortcode/shortcode.module.ts
Mir Arif Hasan 46e5792965
chore: hoppscotch-backend code formatting, minor lint fixes, and refactoring (#5061)
* chore: prettier formatting applied

* chore: added some lint fixed

* fix: few lint errors

* chore: prisma and pubsub are now global module

* chore: add encapsulation consistency in service files

* chore: made a cast function private

* chore: cast function made private

* refactor: module imports

* refactor: posthog spelling
2025-05-09 15:37:20 +06:00

11 lines
360 B
TypeScript

import { Module } from '@nestjs/common';
import { UserModule } from 'src/user/user.module';
import { ShortcodeResolver } from './shortcode.resolver';
import { ShortcodeService } from './shortcode.service';
@Module({
imports: [UserModule],
providers: [ShortcodeService, ShortcodeResolver],
exports: [ShortcodeService],
})
export class ShortcodeModule {}