| 18 | } |
| 19 | |
| 20 | type appControllerImpl struct { |
| 21 | appService service.AppService |
| 22 | } |
| 23 | |
| 24 | func NewAppController(appService service.AppService) AppController { |
| 25 | return &appControllerImpl{appService: appService} |
nothing calls this directly
no outgoing calls
no test coverage detected