Rust-Discord-API 0.1.1

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