| 48 | var _ blobcache.Service = &Service{} |
| 49 | |
| 50 | type Service struct { |
| 51 | ep blobcache.Endpoint |
| 52 | node *bcnet.Node |
| 53 | pc net.PacketConn |
| 54 | |
| 55 | cache *lru.Cache[blobcache.OID, *blobcache.TxInfo] |
| 56 | eg errgroup.Group |
| 57 | cf context.CancelFunc |
| 58 | } |
| 59 | |
| 60 | // Close closes the Service. |
| 61 | func (s *Service) Close() error { |
nothing calls this directly
no outgoing calls
no test coverage detected