Make extra_infos_server but not other simulation code available to tests

This commit is contained in:
Vecna 2024-05-04 14:07:33 -04:00
parent 455452d64b
commit 606156c8b0
1 changed files with 6 additions and 1 deletions

View File

@ -20,13 +20,18 @@ pub mod negative_report;
pub mod positive_report;
pub mod request_handler;
#[cfg(any(test, feature = "simulation"))]
#[cfg(feature = "simulation")]
pub mod simulation {
pub mod extra_infos_server;
pub mod state;
pub mod user;
}
#[cfg(test)]
pub mod simulation {
pub mod extra_infos_server;
}
use analysis::Analyzer;
use extra_info::*;
use negative_report::*;