diff --git a/README.md b/README.md index 11fccff..e92638d 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,10 @@ $ ai r -s syu.is $ ai n ``` +``` +$ ai n | jq . +``` + ### bot ``` diff --git a/src/main.rs b/src/main.rs index 49fc13b..6ad3526 100644 --- a/src/main.rs +++ b/src/main.rs @@ -36,7 +36,7 @@ fn main() { .command( Command::new("token") .alias("t") - .description("handle\n\t\t\t$ ai t syui.bsky.social -p password") + .description("handle\n\t\t\t$ ai t yui.syui.ai -p password\n\t\t\t$ ai t yui.syui.ai -p password -s bsky.social") .action(c_token) .flag( Flag::new("password", FlagType::String) @@ -52,6 +52,7 @@ fn main() { .command( Command::new("refresh") .alias("r") + .description("refresh\n\t\t\t$ ai r\n\t\t\t$ ai r -s bsky.social") .action(c_refresh) .flag( Flag::new("server", FlagType::String) @@ -62,11 +63,13 @@ fn main() { .command( Command::new("notify") .alias("n") + .description("notify\n\t\t\t$ ai n") .action(c_notify), ) .command( Command::new("bot") .alias("b") + .description("bot\n\t\t\t$ ai b\n\t\t\t$ ai b -s bsky.social") .action(c_bot) .flag( Flag::new("server", FlagType::String)