Skip to main content

auths_cli/
constants.rs

1//! Global constants for the Auths CLI.
2
3/// GitHub OAuth scopes required for SSH signing key operations.
4///
5/// Includes:
6/// - `read:user`: Get user profile information
7/// - `gist`: Create and manage Gists for proof publishing
8/// - `write:ssh_signing_key`: Upload SSH signing keys to GitHub account
9pub const GITHUB_SSH_UPLOAD_SCOPES: &str = "read:user gist write:ssh_signing_key";