A모듈 내에 있는 A서비스에 있는 메서드를 B모듈 내 컨트롤러에서 사용하고 싶은 경우! AModule.ts -AService를 내보내기 @Module({ controllers: [AController], providers: [AService], exports: [AService], }) export class AModule { } AService.ts @Injectable() export class AService { getHi(){ return "Hi"; } BModule.ts -AModule을 가져오기 (A모듈안에 A서비스가 있기 때문) @Module({ imports: [AModule], controllers: [BController], providers: [BService], }) export c..