Skip to content

Commit 9697e87

Browse files
authored
refactor(rc): reexport Endpoint and Tag common types (#2147)
# What does this PR do? Reexport `Endpoint` and `Tag` common types # Motivation Re-exporting types allows the crate to coexist with other crates that use a different libdd-common version Co-authored-by: igor.unanua <igor.unanua@datadoghq.com>
1 parent c690b5e commit 9697e87

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

libdd-remote-config/src/lib.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ mod targets;
2222
pub use parse::*;
2323
pub use path::*;
2424

25-
use {
26-
libdd_common::tag::Tag,
27-
serde::{Deserialize, Serialize},
28-
};
25+
pub use libdd_common::{tag::Tag, Endpoint};
26+
27+
use serde::{Deserialize, Serialize};
2928

3029
#[derive(Debug, Deserialize, Serialize, Clone, Hash, Ord, PartialOrd, Eq, PartialEq)]
3130
pub struct Target {

0 commit comments

Comments
 (0)