mirror of
https://github.com/logos-messaging/nim-chat-sdk.git
synced 2026-01-02 14:13:07 +00:00
fix: pure
This commit is contained in:
parent
6b514f6f21
commit
408ee4bd3f
@ -8,16 +8,16 @@ type
|
||||
AlmostNone
|
||||
None
|
||||
|
||||
SendResult* = enum
|
||||
PassedToSender = 0
|
||||
Enqueued = 1
|
||||
Dropped = 2
|
||||
DroppedBatchTooLarge = 3
|
||||
SendResult* {.pure.} = enum
|
||||
PassedToSender
|
||||
Enqueued
|
||||
Dropped
|
||||
DroppedBatchTooLarge
|
||||
|
||||
Priority* = enum
|
||||
Critical = 0
|
||||
Normal = 1
|
||||
Optional = 2
|
||||
Priority* {.pure.} = enum
|
||||
Critical
|
||||
Normal
|
||||
Optional
|
||||
|
||||
Serializable* =
|
||||
concept x
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user