//! # Example
/*!
```rust
use pyo3::prelude::*;
#[pymodule(gil_used = false)]
#[pyo3(name = "_ext_mod")]
pub mod _ext_mod {
#[pymodule_export]
use pytauri_plugin_notification::notification;
}
```
*/
use *;
/// You can access this module in Python via `pytuari.EXT_MOD.notification`.
///
/// Please refer to the Python-side documentation.
///
/// See also: [tauri_plugin_notification]
pub use notification as ext_mod;