mrlyprod/pkgs/mrlypy/src/lib.rsRaw · GitHub lib.rs221 B · rust · 10 lines 1mod gen;2pub mod hand;34use pyo3::prelude::*;56#[pymodule]7fn _mrlypy(py: Python<'_>, module: &Bound<'_, PyModule>) -> PyResult<()> {8 module.add("__version__", env!("CARGO_PKG_VERSION"))?;9 gen::init(py, module)10}