Service represents a service for managing Edge stack data.
| 12 | |
| 13 | // Service represents a service for managing Edge stack data. |
| 14 | type Service struct { |
| 15 | connection portainer.Connection |
| 16 | idxVersion map[portainer.EdgeStackID]int |
| 17 | mu sync.RWMutex |
| 18 | cacheInvalidationFn func(portainer.Transaction, portainer.EdgeStackID) |
| 19 | } |
| 20 | |
| 21 | func (service *Service) BucketName() string { |
| 22 | return BucketName |
nothing calls this directly
no outgoing calls
no test coverage detected