(f scopes.FetcherInterface)
| 49 | type HandlerOption func(*HandlerOptions) |
| 50 | |
| 51 | func WithScopeFetcher(f scopes.FetcherInterface) HandlerOption { |
| 52 | return func(o *HandlerOptions) { |
| 53 | o.ScopeFetcher = f |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | func WithGitHubMCPServerFactory(f GitHubMCPServerFactoryFunc) HandlerOption { |
| 58 | return func(o *HandlerOptions) { |
no outgoing calls