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