mirror of
https://github.com/kristoferssolo/project-finder.git
synced 2025-10-21 19:50:35 +00:00
7 lines
163 B
Rust
7 lines
163 B
Rust
use criterion::Criterion;
|
|
|
|
pub fn benchmark_specific_scenarios(c: &mut Criterion) {
|
|
let group = c.benchmark_group("specific_scenarios");
|
|
group.finish();
|
|
}
|