mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-20 00:43:36 +03:00
12 lines
248 B
C#
12 lines
248 B
C#
using Remora.Discord.API;
|
|
using Remora.Rest.Core;
|
|
|
|
namespace TeamOctolings.Octobot.Extensions;
|
|
|
|
public static class UInt64Extensions
|
|
{
|
|
public static Snowflake ToSnowflake(this ulong id)
|
|
{
|
|
return DiscordSnowflake.New(id);
|
|
}
|
|
}
|