We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42a8cbc commit 5d8561fCopy full SHA for 5d8561f
pkg/github/feature_flags_test.go
@@ -44,10 +44,10 @@ func HelloWorldTool(t translations.TranslationHelperFunc) inventory.ServerTool {
44
// Check feature flag to determine greeting style
45
greeting := "Hello, world!"
46
if deps.IsFeatureEnabled(ctx, RemoteMCPEnthusiasticGreeting) {
47
- greeting = greeting + " Welcome to the future of MCP! 🎉"
+ greeting += " Welcome to the future of MCP! 🎉"
48
}
49
if deps.GetFlags().Experimental {
50
- greeting = greeting + " Experimental features are enabled! 🚀"
+ greeting += " Experimental features are enabled! 🚀"
51
52
53
// Build response
0 commit comments