| 68 | } |
| 69 | |
| 70 | type store struct { |
| 71 | peer PeerService |
| 72 | db *gorm.DB |
| 73 | casa CasaService |
| 74 | notify NotifyServer |
| 75 | rely RelyService |
| 76 | system SystemService |
| 77 | shares SharesService |
| 78 | connections ConnectionsService |
| 79 | gateway external.ManagementService |
| 80 | storage StorageService |
| 81 | health HealthService |
| 82 | other OtherService |
| 83 | } |
| 84 | |
| 85 | func (c *store) Storage() StorageService { |
| 86 | return c.storage |
nothing calls this directly
no outgoing calls
no test coverage detected