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.
2b-rs/src/providers/qalc.rs

10 lines
373 B
Rust

use crate::utils::error::BotResult;
use crate::utils::process::{run_command_async, sanitize_argument};
/// Runs the qalc command with the given expression
pub async fn qalc(expression: &str) -> BotResult<String> {
let expression = sanitize_argument(expression, true)?;
let result = run_command_async("qalc", &["-m", "1000", &*expression]).await?;
Ok(result)
}