muffy 0.3.12

The static website validator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod clock;
#[cfg(test)]
mod stub;

pub use clock::*;
#[cfg(test)]
pub use stub::*;

use tokio::time::Instant;

pub trait Timer: Send + Sync {
    fn now(&self) -> Instant;
}