mod service;
pub mod common;
#[cfg(feature = "v1")]
pub mod helpdesk;
pub mod prelude;
pub use service::HelpdeskService;
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
#[cfg(test)]
#[allow(unused_imports)]
mod tests {
use super::*;
#[test]
fn test_version() {
assert_ne!(VERSION, "");
}
}