e071084ebe
govulncheck / govulncheck (push) Has been cancelled
Lint / golangci-lint (push) Has been cancelled
Run Tests / Unit Tests (push) Has been cancelled
Run Tests / Etcd Integration Tests (push) Has been cancelled
Harness (E2E) / Harnesses (mock LLM) (push) Has been cancelled
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Has been cancelled
29 lines
474 B
Go
29 lines
474 B
Go
package mock
|
|
|
|
import (
|
|
"go-micro.dev/v6/registry"
|
|
"go-micro.dev/v6/server"
|
|
)
|
|
|
|
type MockSubscriber struct {
|
|
Opts server.SubscriberOptions
|
|
Sub interface{}
|
|
Id string
|
|
}
|
|
|
|
func (m *MockSubscriber) Topic() string {
|
|
return m.Id
|
|
}
|
|
|
|
func (m *MockSubscriber) Subscriber() interface{} {
|
|
return m.Sub
|
|
}
|
|
|
|
func (m *MockSubscriber) Endpoints() []*registry.Endpoint {
|
|
return []*registry.Endpoint{}
|
|
}
|
|
|
|
func (m *MockSubscriber) Options() server.SubscriberOptions {
|
|
return m.Opts
|
|
}
|