pub mod background_check;
pub mod exam;
use crate::core::config::Config;
use background_check::BackgroundCheckService;
use exam::ExamService;
pub struct EcologicalDockingService {
pub background_check: BackgroundCheckService,
pub exam: ExamService,
}
impl EcologicalDockingService {
pub fn new(config: Config) -> Self {
Self {
background_check: BackgroundCheckService::new(config.clone()),
exam: ExamService::new(config),
}
}
}