Rust_Discord_API/utils/
arguments.rs

1/// Parses command arguments into a vector of strings.
2///
3/// # Arguments
4///
5/// * `args` - The argument string to parse.
6///
7/// # Returns
8///
9/// A vector of parsed arguments.
10#[allow(dead_code)]
11pub fn parse_arguments(args: &str) -> Vec<&str> {
12    args.split_whitespace().collect()
13}