File size: 137 Bytes
ce1c12f
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
mod expressions;

use pyo3::prelude::*;

#[pymodule]
fn fancy_regex_expr_plugin(_m: &Bound<'_, PyModule>) -> PyResult<()> {
    Ok(())
}