use pyo3::prelude::*;
use destiny;
#[pymodule]
fn pydestiny(_py: Python, m: &PyModule) -> PyResult<()> {
#[pyfn(m, "parse_dice_string")]
fn parse_dice_string(_py: Python, string: &str) -> PyResult<i64> {
Ok(destiny::parse_dice_string(string))
}
Ok(())
}