Custom Actions
Add team-specific debug actions to the App Tools menu.
Custom Actions let you register one-tap shortcuts for common dev tasks: clearing caches, toggling feature flags, switching API environments, or resetting onboarding.

DebugSwift.App.shared.customAction = {
[init(title: "Dev Tools", actions: [
init(title: "Reset onboarding") { /* ... */ },
init(title: "Switch to staging") { /* ... */ }
])]
}
