mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-01-07 00:23:08 +00:00
12 lines
212 B
Nim
12 lines
212 B
Nim
import ../crypto
|
|
|
|
# How to surface different verifability of properties across conversation types
|
|
|
|
|
|
type ReceivedMessage* = ref object of RootObj
|
|
sender*: PublicKey
|
|
timestamp*: int64
|
|
content*: seq[byte]
|
|
|
|
|