scsys_stores/actions/
mod.rs

1/*
2    Appellation: actions <module>
3    Contrib: FL03 <jo3mccain@icloud.com>
4*/
5
6pub mod crud;
7
8pub(crate) mod prelude {
9    pub use super::crud::CRUD;
10}
11
12#[cfg(test)]
13mod tests {}