Advisor is the interface for advisor.
| 117 | |
| 118 | // Advisor is the interface for advisor. |
| 119 | type Advisor interface { |
| 120 | Check(ctx context.Context, checkCtx Context) ([]*storepb.Advice, error) |
| 121 | } |
| 122 | |
| 123 | var ( |
| 124 | advisorMu sync.RWMutex |
no outgoing calls
no test coverage detected