From a4f05a40e2f7146f429fef26a96c91a41baba499 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 11 Nov 2017 04:35:35 -0800 Subject: start adding help reference --- src/commands/auth.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/commands/auth.rs') diff --git a/src/commands/auth.rs b/src/commands/auth.rs index 0ed006b..0a2425d 100644 --- a/src/commands/auth.rs +++ b/src/commands/auth.rs @@ -14,7 +14,9 @@ static UNFAV_TWEET_URL: &str = "https://api.twitter.com/1.1/favorites/destroy.js pub static AUTH: Command = Command { keyword: "auth", params: 0, - exec: auth + exec: auth, + // TODO: support account-specific auth? profile name spec? + help_str: "Begin PIN-based account auth process. Second step is the `pin` command." }; static OAUTH_REQUEST_TOKEN_URL: &str = "https://api.twitter.com/oauth/request_token"; @@ -54,7 +56,8 @@ fn auth(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) { pub static PIN: Command = Command { keyword: "pin", params: 1, - exec: pin + exec: pin, + help_str: ": Complete account auth. Enter PIN from prior `auth` link to connect an account." }; fn pin(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) { -- cgit v1.1