formatScopeDisplay formats a scope string for display, handling empty scopes.
(scope string)
| 77 | |
| 78 | // formatScopeDisplay formats a scope string for display, handling empty scopes. |
| 79 | func formatScopeDisplay(scope string) string { |
| 80 | if scope == "" { |
| 81 | return "(no scope required for public read access)" |
| 82 | } |
| 83 | return scope |
| 84 | } |
| 85 | |
| 86 | func runListScopes() error { |
| 87 | // Get toolsets configuration (same logic as stdio command) |
no outgoing calls
no test coverage detected