(config coreconfig.Reader, gateway net.Gateway)
| 21 | } |
| 22 | |
| 23 | func NewCloudControllerAppEventsRepository(config coreconfig.Reader, gateway net.Gateway) CloudControllerAppEventsRepository { |
| 24 | return CloudControllerAppEventsRepository{ |
| 25 | config: config, |
| 26 | gateway: gateway, |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | func (repo CloudControllerAppEventsRepository) RecentEvents(appGUID string, limit int64) ([]models.EventFields, error) { |
| 31 | count := int64(0) |
no outgoing calls
no test coverage detected