use crate::error::AppError;
pub use crate::routines::{RoutineResponse, RoutineStore};
pub fn build(store: &RoutineStore, id: &str) -> Result<RoutineResponse, AppError> {
crate::routines::svc_delete(store, id)
}
#[cfg(test)]
#[path = "logic_tests.rs"]
mod logic_tests;