You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amethyst/src/internal/mod.rs

13 lines
240 B
Rust

mod clean;
pub mod rpc;
mod sort;
pub mod structs;
pub fn sort(a: &[String], verbosity: i32) -> structs::Sorted {
sort::sort(a, verbosity)
}
pub fn clean(a: &[String], verbosity: i32) -> Vec<String> {
clean::clean(a, verbosity)
}