
main.tsThe entry file of the application which uses the core function NestFactory to create a Nest application instance.
controller.tsA basic controller with a single route.
module.tsThe root module of the application.
service.tsA basic service with a single method.
controlller.ts ⇒ 라우팅을 담당하고, Service의 함수로 연결.
service.ts ⇒ 비즈니스 로직을 담당하고, 컨트롤러에서 사용되는 메서드를 정의.
module