1mod base;
2
3use pyo3::prelude::*;
4use pyo3::pymodule;
5use pyo3_polars::PolarsAllocator;
6
7#[global_allocator]
8static ALLOC: PolarsAllocator = PolarsAllocator::new();
9
10#[pymodule(name = "_polars_qf_core")]
11fn polars_qf(_m: &Bound<'_, PyModule>) -> PyResult<()> {
12 Ok(())
13}