blob: 46fd13f335dad9aff30dd5758e53756a76251f0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <util/datetime/base.h>
#include <library/cpp/time_provider/monotonic.h>
namespace NActors {
ui64 GetMonotonicMicroSeconds();
using TMonotonic = NMonotonic::TMonotonic;
} // namespace NActors
|