Skip to content

Commit

Permalink
refactor: update context identity output (#1080)
Browse files Browse the repository at this point in the history
  • Loading branch information
petarjuki7 authored Jan 30, 2025
1 parent a2f0e4a commit 1ef9d3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/meroctl/src/cli/context/get.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ impl Report for GetContextStorageResponse {

impl Report for GetContextIdentitiesResponse {
fn report(&self) {
println!("Identities: {self:?}");
for identity in &self.data.identities {
println!("{}", identity);
}
}
}

Expand Down

0 comments on commit 1ef9d3c

Please sign in to comment.