| 16 | } |
| 17 | |
| 18 | type environmentControllerImpl struct { |
| 19 | environmentService service.EnvironmentService |
| 20 | } |
| 21 | |
| 22 | func NewEnvironmentController(environmentService service.EnvironmentService) EnvironmentController { |
| 23 | return &environmentControllerImpl{environmentService: environmentService} |
nothing calls this directly
no outgoing calls
no test coverage detected