Service represents a service for managing environment(endpoint) data.
| 15 | |
| 16 | // Service represents a service for managing environment(endpoint) data. |
| 17 | type Service struct { |
| 18 | connection portainer.Connection |
| 19 | mu sync.RWMutex |
| 20 | idxEdgeID map[string]portainer.EndpointID |
| 21 | heartbeats sync.Map |
| 22 | } |
| 23 | |
| 24 | func (service *Service) BucketName() string { |
| 25 | return BucketName |
nothing calls this directly
no outgoing calls
no test coverage detected