frequenz_microgrid/logical_meter/
config.rs

1// License: MIT
2// Copyright © 2025 Frequenz Energy-as-a-Service GmbH
3
4//! This module defines the configuration for the logical meter.
5
6use chrono::TimeDelta;
7
8pub struct LogicalMeterConfig {
9    /// The resampling interval for the logical meter.
10    pub resampling_interval: TimeDelta,
11}