aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/coroutine/engine/custom_time.h
blob: 0bff0f6a60d58ac9260c2d8f864f26eb761c236d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <util/datetime/base.h>

namespace NCoro {
class ITime {
  public:
    virtual TInstant Now() = 0;
};
}