1
2
3
4
5
6
7
8
9
10
11
#![deny(clippy::pedantic)]

mod coverage;
mod speciation;
mod turnover;

necsim_plugins_core::export_plugin!(
    GlobalTurnover => turnover::GlobalTurnoverReporter,
    GlobalSpeciation => speciation::GlobalSpeciationReporter,
    GlobalCoverage => coverage::GlobalCoverageReporter,
);