mirror of
https://github.com/astral-sh/uv.git
synced 2025-10-29 03:02:55 +00:00
Clarify that uv auth commands take a URL (#15664)
From the previous description I tried `uv auth token pyx`, which didn't work. --------- Co-authored-by: Zanie Blue <contact@zanie.dev>
This commit is contained in:
parent
8473ecba11
commit
a94f7d0847
2 changed files with 8 additions and 8 deletions
|
|
@ -5538,7 +5538,7 @@ pub struct PythonPinArgs {
|
|||
|
||||
#[derive(Args)]
|
||||
pub struct AuthLogoutArgs {
|
||||
/// The service to logout of.
|
||||
/// The domain or URL of the service to logout from.
|
||||
pub service: Service,
|
||||
|
||||
/// The username to logout.
|
||||
|
|
@ -5559,7 +5559,7 @@ pub struct AuthLogoutArgs {
|
|||
|
||||
#[derive(Args)]
|
||||
pub struct AuthLoginArgs {
|
||||
/// The service to log into.
|
||||
/// The domain or URL of the service to log into.
|
||||
pub service: Service,
|
||||
|
||||
/// The username to use for the service.
|
||||
|
|
@ -5594,7 +5594,7 @@ pub struct AuthLoginArgs {
|
|||
|
||||
#[derive(Args)]
|
||||
pub struct AuthTokenArgs {
|
||||
/// The service to lookup.
|
||||
/// The domain or URL of the service to lookup.
|
||||
pub service: Service,
|
||||
|
||||
/// The username to lookup.
|
||||
|
|
@ -5612,7 +5612,7 @@ pub struct AuthTokenArgs {
|
|||
|
||||
#[derive(Args)]
|
||||
pub struct AuthDirArgs {
|
||||
/// The service to lookup.
|
||||
/// The domain or URL of the service to lookup.
|
||||
pub service: Option<Service>,
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue