uncomment README.md documentation line and add core module declaration

This commit is contained in:
Palash Tyagi 2025-04-12 11:04:24 +01:00
parent 4f60e31d55
commit 1d301b45b7

View File

@ -1,4 +1,5 @@
// #![doc = include_str!("../README.md")]
// uncomment the above line to include the README.md file in the documentation
//! # msyrs
//!
@ -18,6 +19,9 @@
/// Documentation and type-stubs for the `msyrs` Python API.
pub mod _py;
/// Implementation for the `core` module.
pub mod core;
/// Implementation for the `download` module.
pub mod download;