| 6 | ) |
| 7 | |
| 8 | type Service struct { |
| 9 | ctrlv1connect.UnimplementedCtrlServiceHandler |
| 10 | instanceID string |
| 11 | db db.Database |
| 12 | } |
| 13 | |
| 14 | func New(instanceID string, database db.Database) *Service { |
| 15 | return &Service{ |
nothing calls this directly
no outgoing calls
no test coverage detected