diff --git a/gribberish/src/templates/product/mod.rs b/gribberish/src/templates/product/mod.rs index ce312ea..ec19fb5 100644 --- a/gribberish/src/templates/product/mod.rs +++ b/gribberish/src/templates/product/mod.rs @@ -1,11 +1,12 @@ -pub mod product_template; -pub mod tables; -pub mod horizontal_analysis_template; -pub mod derived_ensemble_horizontal_analysis_template; pub mod average_accumulation_extreme_horizontal_analysis_template; +pub mod derived_ensemble_horizontal_analysis_template; pub mod derived_ensemble_horizontal_forecast_time_interval_template; -mod parameters; +pub mod horizontal_analysis_template; +pub mod parameters; +pub mod product_template; +pub mod tables; -pub use horizontal_analysis_template::HorizontalAnalysisForecastTemplate; +pub use average_accumulation_extreme_horizontal_analysis_template::AverageAccumulationExtremeHorizontalAnalysisForecastTemplate; pub use derived_ensemble_horizontal_analysis_template::DerivedEnsembleHorizontalAnalysisForecastTemplate; -pub use average_accumulation_extreme_horizontal_analysis_template::AverageAccumulationExtremeHorizontalAnalysisForecastTemplate; \ No newline at end of file +pub use horizontal_analysis_template::HorizontalAnalysisForecastTemplate; +