mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
15 lines
244 B
TypeScript
15 lines
244 B
TypeScript
|
|
import { SharedService } from "./shared.service";
|
|
import { Module } from "./../../src/";
|
|
|
|
@Module({
|
|
components: [
|
|
SharedService,
|
|
],
|
|
exports: [
|
|
SharedService,
|
|
]
|
|
})
|
|
export class SharedModule {
|
|
configure() {}
|
|
} |