Concept Flow - Root module (AppModule)
Define AppModule class
Use @Module decorator
Specify imports, controllers, providers
NestJS bootstraps AppModule
Application starts running
The root module is defined as a class with the @Module decorator specifying imports, controllers, and providers. NestJS uses this to start the app.