Skip to content

Commit

Permalink
make cfs configuration struct fields public
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Sopena Ballesteros committed Nov 14, 2023
1 parent 3fef310 commit 98069a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/manta/cfs/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ use std::fmt;
use crate::shasta;

pub struct Configuration {
name: String,
last_updated: String,
config_layers: Vec<Layer>,
pub name: String,
pub last_updated: String,
pub config_layers: Vec<Layer>,
}

impl Configuration {
Expand Down

0 comments on commit 98069a3

Please sign in to comment.