rsiot/components/cmp_influxdb/
config.rs

1
2
3
4
5
6
7
8
9
pub use crate::components_config::influxdb_v2::*;

pub struct ConfigAlias<TMsg>(pub Config<TMsg>);

impl<TMsg> From<Config<TMsg>> for ConfigAlias<TMsg> {
    fn from(value: Config<TMsg>) -> Self {
        Self(value)
    }
}