use displaydoc::Display;
use crate::rubase::ruentity;
#[derive(Debug, Display,Default,Clone )]
pub struct GeneralDb {
}
impl ruentity::BaseEntity for GeneralDb {
}
impl GeneralDb {
pub fn new() -> Self {
Self {}
}
pub fn execute(&self) -> String {
"execute".to_string()
}
}