Skip to content

Commit bc94f7b

Browse files
committed
primitives - make supermarket::Campaign field public
1 parent 96bafcf commit bc94f7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

primitives/src/supermarket.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ use crate::{BalancesMap, Channel};
22

33
#[derive(Debug, Clone)]
44
pub struct Campaign {
5-
channel: Channel,
6-
status: Status,
7-
balances: BalancesMap,
5+
pub channel: Channel,
6+
pub status: Status,
7+
pub balances: BalancesMap,
88
}
99

1010
impl Campaign {

0 commit comments

Comments
 (0)