diff options
| author | Nathan Perry <np@nathanperry.dev> | 2024-08-06 16:32:35 -0400 |
|---|---|---|
| committer | Nathan Perry <np@nathanperry.dev> | 2024-08-06 16:32:35 -0400 |
| commit | 501ba27e1cd52741988113ef47ee0fad7d0a5799 (patch) | |
| tree | cfe5985b6896b8cd440638716d9c032735af46bf /src/util/rest_vec.rs | |
| parent | 011fcf828ebd1325dbd4dfa21c4952f1be38a29f (diff) | |
fixup unknown command, document commands
Diffstat (limited to 'src/util/rest_vec.rs')
| -rw-r--r-- | src/util/rest_vec.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/util/rest_vec.rs b/src/util/rest_vec.rs index 82889cd..31b783b 100644 --- a/src/util/rest_vec.rs +++ b/src/util/rest_vec.rs @@ -1,15 +1,16 @@ +use std::error::Error; + use serenity::all::{ Context, Message, }; -use std::error::Error; /// Pop a whitespace-separated word from the front of the arguments. Supports quotes and quote /// escaping. /// /// Leading whitespace will be trimmed; trailing whitespace is not consumed. // From https://github.com/serenity-rs/poise/blob/current/src/prefix_argument/mod.rs -fn pop_string(args: &str) -> Result<(&str, String), poise::TooFewArguments> { +pub fn pop_string(args: &str) -> Result<(&str, String), poise::TooFewArguments> { // TODO: consider changing the behavior to parse quotes literally if they're in the middle // of the string: // - `"hello world"` => `hello world` |
