micro--go-micro
1c69836b45
Move internal/non-public packages behind internal/ or into their parent packages where they belong: - deploy/ → gateway/mcp/deploy/ (Helm charts belong with the gateway) - profile/ → service/profile/ (preset plugin profiles are a service concern) - scripts/ → internal/scripts/ (install script is not public API) - test/ → internal/test/ (test harness is not public API) - util/ → internal/util/ (internal helpers shouldn't be imported externally) Also fixes CLAUDE.md merge conflict markers and updates project structure documentation. All import paths updated. Build and tests pass. https://claude.ai/code/session_01GkduEhcrqcG45rdfYh8dAc
18 行
232 B
Go
18 行
232 B
Go
package http
|
|
|
|
import (
|
|
"go-micro.dev/v5/registry"
|
|
)
|
|
|
|
type Options struct {
|
|
Registry registry.Registry
|
|
}
|
|
|
|
type Option func(*Options)
|
|
|
|
func WithRegistry(r registry.Registry) Option {
|
|
return func(o *Options) {
|
|
o.Registry = r
|
|
}
|
|
}
|