| 31 | ) |
| 32 | |
| 33 | type Repository interface { |
| 34 | Casa() CasaService |
| 35 | Connections() ConnectionsService |
| 36 | Gateway() external.ManagementService |
| 37 | Health() HealthService |
| 38 | Notify() NotifyServer |
| 39 | Rely() RelyService |
| 40 | Shares() SharesService |
| 41 | System() SystemService |
| 42 | Storage() StorageService |
| 43 | MessageBus() *message_bus.ClientWithResponses |
| 44 | Peer() PeerService |
| 45 | Other() OtherService |
| 46 | } |
| 47 | |
| 48 | func NewService(db *gorm.DB, RuntimePath string) Repository { |
| 49 | gatewayManagement, err := external.NewManagementService(RuntimePath) |
no outgoing calls
no test coverage detected