claude_profile 1.0.0

Claude Code account credential management and token status
Documentation
1
2
3
4
5
6
7
8
9
10
//! `claude_profile` binary entry point.
//!
//! Thin wrapper that delegates to [`claude_profile::run_cli()`].
//! The full pipeline implementation lives in the library so it is compiled
//! once and shared by the `claude_profile` and `clp` binary targets.

fn main()
{
  claude_profile::run_cli();
}