Foxnouns.NET/Foxnouns.Backend/Database/ISnowflakeGenerator.cs

8 lines
151 B
C#

using NodaTime;
namespace Foxnouns.Backend.Database;
public interface ISnowflakeGenerator
{
Snowflake GenerateSnowflake(Instant? time = null);
}