pub mod query;
use openlark_core::config::Config;
#[derive(Debug, Clone)]
pub struct TenantAppMetricsService {
config: Config,
}
impl TenantAppMetricsService {
pub fn new(config: Config) -> Self {
Self { config }
}
pub fn query(&self) -> query::TenantAppMetricsQueryRequest {
query::TenantAppMetricsQueryRequest::new(self.config.clone())
}
}