From 70f135da6146147f5228a118fc18ccf97b2021fb Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Fri, 22 Nov 2024 17:17:20 +0000 Subject: [PATCH] mplementation stubs for panel --- src/lib.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 7c98e7a..0e58b7e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,15 +15,18 @@ //! ``` //! -/// Documentation for the `msyrs` Python API. +/// Documentation and type-stubs for the `msyrs` Python API. pub mod py; -/// Documentation for the `download` module. +/// Implementation for the `download` module. pub mod download; -/// Documentation for the `utils` module. +/// Implementation for the `utils` module. pub mod utils; +/// Implementation for the `panel` module. +pub mod panel; + /// PyO3 bindings for the `msyrs` Python API. #[allow(unused_imports)] use py::msyrs;