using System; namespace RudderSdk.Core.Abstractions; /// Time source used by the effects client; override in tests. public interface IClock { /// Current UTC time. DateTimeOffset UtcNow { get; } }