fix: Make the influx client data_point module public
Driven by use in fusion.pull/24376/head
parent
feeac88f24
commit
6136fd35d1
|
@ -1,3 +1,5 @@
|
||||||
|
//! Data point building and writing
|
||||||
|
|
||||||
use snafu::{ensure, Snafu};
|
use snafu::{ensure, Snafu};
|
||||||
use std::{collections::BTreeMap, io};
|
use std::{collections::BTreeMap, io};
|
||||||
|
|
||||||
|
|
|
@ -60,7 +60,7 @@ use reqwest::Body;
|
||||||
use snafu::{ResultExt, Snafu};
|
use snafu::{ResultExt, Snafu};
|
||||||
use std::io::{self, Write};
|
use std::io::{self, Write};
|
||||||
|
|
||||||
mod data_point;
|
pub mod data_point;
|
||||||
pub use data_point::{DataPoint, FieldValue, WriteDataPoint};
|
pub use data_point::{DataPoint, FieldValue, WriteDataPoint};
|
||||||
|
|
||||||
/// Errors that occur while making requests to the Influx server.
|
/// Errors that occur while making requests to the Influx server.
|
||||||
|
|
Loading…
Reference in New Issue