pub async fn require_developer(operation: &str) -> Result<()>Expand description
Check if the current account has developer role (or higher)
§Errors
Returns CliError::NotLoggedIn if no account is logged in.
Returns CliError::RoleMissing if the account doesn’t have developer or admin role.
§Examples
use oauth_db_cli::auth::require_developer;
require_developer("create application").await?;
// Now safe to perform developer operations