openlark_application/
lib.rs1#![allow(clippy::module_inception)]
6
7mod service;
8
9pub mod common;
11
12#[cfg(any(feature = "v1", feature = "v5", feature = "v6", feature = "v7"))]
14pub mod application;
15
16#[cfg(feature = "workplace")]
18pub mod workplace;
19
20pub mod prelude;
22
23pub use service::ApplicationService;
25
26pub type ApplicationClient = ApplicationService;
28
29pub const VERSION: &str = env!("CARGO_PKG_VERSION");
31
32#[cfg(test)]
33#[allow(unused_imports)]
34mod tests {
35 use super::*;
36 #[test]
37 fn test_version() {
38 assert_ne!(VERSION, "");
39 }
40}