Skip to content

Commit 7af3815

Browse files
committed
fmt
1 parent 7a9176c commit 7af3815

File tree

1 file changed

+1
-3
lines changed
  • crates/flagd/src/resolver/in_process/storage

1 file changed

+1
-3
lines changed

crates/flagd/src/resolver/in_process/storage/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ use tokio::sync::RwLock;
1212
use tokio::sync::mpsc::{Receiver, Sender, channel};
1313

1414
/// State of the flag storage
15-
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
16-
#[derive(Default)]
15+
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
1716
pub enum StorageState {
1817
/// Storage is healthy and up-to-date
1918
#[default]
@@ -24,7 +23,6 @@ pub enum StorageState {
2423
Error,
2524
}
2625

27-
2826
/// Represents a change in storage state with affected flags
2927
#[derive(Debug, Clone, PartialEq)]
3028
pub struct StorageStateChange {

0 commit comments

Comments
 (0)