mirror of
https://github.com/vernu/textbee.git
synced 2026-07-31 17:37:26 -04:00
10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
import { Module } from '@nestjs/common'
|
|
import { TurnstileService } from './turnstile.service'
|
|
|
|
@Module({
|
|
providers: [TurnstileService],
|
|
exports: [TurnstileService],
|
|
})
|
|
export class CommonModule {}
|
|
|