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

20 lines
343 B
Rust

3 years ago
use crate::Options;
mod clean;
mod initialise;
pub mod rpc;
mod sort;
pub mod structs;
3 years ago
pub fn sort(a: &[String], options: Options) -> structs::Sorted {
sort::sort(a, options)
}
3 years ago
pub fn clean(a: &[String], options: Options) -> Vec<String> {
clean::clean(a, options)
}
pub fn init(options: Options) {
initialise::init(options);
}