This commit is contained in:
appflowy
2021-11-29 21:51:55 +08:00
parent 8c54949271
commit c4088622f8
28 changed files with 90 additions and 114 deletions

View File

@ -1,4 +1,2 @@
mod model;
pub use model::*;

View File

@ -1,4 +1,4 @@
// Auto-generated, do not edit
// Auto-generated, do not edit
mod kv;
pub use kv::*;
mod kv;
pub use kv::*;

View File

@ -1,5 +1,3 @@
use std::time::Duration;
pub fn jitter(duration: Duration) -> Duration {
duration.mul_f64(rand::random::<f64>())
}
pub fn jitter(duration: Duration) -> Duration { duration.mul_f64(rand::random::<f64>()) }