Files
wehub-resource-sync e071084ebe
govulncheck / govulncheck (push) Waiting to run
Harness (E2E) / Harnesses (mock LLM) (push) Waiting to run
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Run Tests / Unit Tests (push) Waiting to run
Run Tests / Etcd Integration Tests (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 12:40:33 +08:00

29 lines
450 B
Go

package mock
import (
"go-micro.dev/v6/registry"
"go-micro.dev/v6/server"
)
type MockHandler struct {
Opts server.HandlerOptions
Hdlr interface{}
Id string
}
func (m *MockHandler) Name() string {
return m.Id
}
func (m *MockHandler) Handler() interface{} {
return m.Hdlr
}
func (m *MockHandler) Endpoints() []*registry.Endpoint {
return []*registry.Endpoint{}
}
func (m *MockHandler) Options() server.HandlerOptions {
return m.Opts
}