1
2
3
4
5
6
7
use tokio::time::Instant;

impl crate::Instant for Instant {
    fn now() -> Self {
        Instant::now()
    }
}