(_ context.Context, _ string)
| 32 | } |
| 33 | |
| 34 | func (f *fakeHubClient) ResolveActiveConversation(_ context.Context, _ string) (string, string, error) { |
| 35 | f.mu.Lock() |
| 36 | defer f.mu.Unlock() |
| 37 | return f.convID, "alice", nil |
| 38 | } |
| 39 | |
| 40 | func (f *fakeHubClient) NewConversation(_ context.Context, _ string) (string, error) { |
| 41 | f.mu.Lock() |