fix: Make the influx client data_point module public

Driven by use in fusion.
pull/24376/head
Carol (Nichols || Goulding) 2020-08-05 14:28:24 -04:00
parent feeac88f24
commit 6136fd35d1
2 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
//! Data point building and writing
use snafu::{ensure, Snafu};
use std::{collections::BTreeMap, io};

View File

@ -60,7 +60,7 @@ use reqwest::Body;
use snafu::{ResultExt, Snafu};
use std::io::{self, Write};
mod data_point;
pub mod data_point;
pub use data_point::{DataPoint, FieldValue, WriteDataPoint};
/// Errors that occur while making requests to the Influx server.