Skip to content

Commit

Permalink
public fields on TransportConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
shumbo committed Oct 1, 2023
1 parent cc6eed1 commit 0c419a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chorus_lib/src/transport.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ use std::marker::PhantomData;
#[derive(Clone)]
pub struct TransportConfig<Target: ChoreographyLocation, TargetInfo, L: HList, Info> {
/// The information about locations
info: HashMap<String, Info>,
pub info: HashMap<String, Info>,
/// The information about the target choreography
target_info: (Target, TargetInfo),
pub target_info: (Target, TargetInfo),
/// The struct is parametrized by the location set (`L`).
location_set: PhantomData<L>,
}
Expand Down

0 comments on commit 0c419a5

Please sign in to comment.