8 lines
151 B
C#
8 lines
151 B
C#
using NodaTime;
|
|
|
|
namespace Foxnouns.Backend.Database;
|
|
|
|
public interface ISnowflakeGenerator
|
|
{
|
|
Snowflake GenerateSnowflake(Instant? time = null);
|
|
}
|