Controllers are used to define the controllers for the application
Controllers in Orionjs are the entry points for all code execution in your application. They act as the interface between external systems and your application’s business logic, implemented in services.
This organization helps maintain a clean separation of concerns and keeps related functionality grouped together.Controllers are designed to be thin layers that focus on handling requests and delegating to services, where the actual business logic resides. This separation makes your code more maintainable and testable.