mplementation stubs for panel

This commit is contained in:
Palash Tyagi 2024-11-22 17:17:20 +00:00
parent 6599f265b6
commit 70f135da61

View File

@ -15,15 +15,18 @@
//! ``` //! ```
//! //!
/// Documentation for the `msyrs` Python API. /// Documentation and type-stubs for the `msyrs` Python API.
pub mod py; pub mod py;
/// Documentation for the `download` module. /// Implementation for the `download` module.
pub mod download; pub mod download;
/// Documentation for the `utils` module. /// Implementation for the `utils` module.
pub mod utils; pub mod utils;
/// Implementation for the `panel` module.
pub mod panel;
/// PyO3 bindings for the `msyrs` Python API. /// PyO3 bindings for the `msyrs` Python API.
#[allow(unused_imports)] #[allow(unused_imports)]
use py::msyrs; use py::msyrs;