14 lines
226 B
C#
14 lines
226 B
C#
using System;
|
|
|
|
namespace StellaOps.SbomService.Services;
|
|
|
|
public interface IClock
|
|
{
|
|
DateTimeOffset UtcNow { get; }
|
|
}
|
|
|
|
public sealed class SystemClock : IClock
|
|
{
|
|
public DateTimeOffset UtcNow => DateTimeOffset.UtcNow;
|
|
}
|