auths-cli 0.1.3

Command-line interface for Auths decentralized identity system
Documentation
1
2
3
4
5
6
7
8
9
//! Global constants for the Auths CLI.

/// GitHub OAuth scopes required for SSH signing key operations.
///
/// Includes:
/// - `read:user`: Get user profile information
/// - `gist`: Create and manage Gists for proof publishing
/// - `write:ssh_signing_key`: Upload SSH signing keys to GitHub account
pub const GITHUB_SSH_UPLOAD_SCOPES: &str = "read:user gist write:ssh_signing_key";