This repository has been archived on 2023-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
nimcord/src/discordobject.nim

7 lines
189 B
Nim

type
snowflake* = uint64
DiscordObject* = object of RootObj
id*: snowflake
proc `==`*(obj1: DiscordObject, obj2: DiscordObject): bool =
return obj1.id == obj2.id