Skip to content

Commit

Permalink
make address and resolved_address pub in Swarm
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-1 committed Dec 2, 2023
1 parent 3eb9998 commit 2b9b16d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azalea/src/swarm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ pub struct Swarm {
bots: Arc<Mutex<HashMap<Entity, Client>>>,

// bot_datas: Arc<Mutex<Vec<(Client, S)>>>,
resolved_address: SocketAddr,
address: ServerAddress,
pub resolved_address: SocketAddr,
pub address: ServerAddress,
pub instance_container: Arc<RwLock<InstanceContainer>>,

bots_tx: mpsc::UnboundedSender<(Option<Event>, Client)>,
Expand Down

0 comments on commit 2b9b16d

Please sign in to comment.