mirror of
https://github.com/logos-messaging/logos-chat.git
synced 2026-03-02 13:53: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]
|
|
|
|
|