feat: add initial Python module integration with pyo3

This commit is contained in:
Бакыт Ниязалиев 2025-06-11 21:41:04 +07:00
parent 57ec32312c
commit c516e65a74
2 changed files with 5 additions and 0 deletions

1
src/lib.rs Normal file
View File

@ -0,0 +1 @@
mod py_module;

4
src/py_module.rs Normal file
View File

@ -0,0 +1,4 @@
use pyo3::prelude::*;
#[pymodule(gil_used = false)]
mod _httpx {}