mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-08 00:43:06 +00:00
12 lines
295 B
Nim
12 lines
295 B
Nim
|
|
## Contains types and utilities for pagination.
|
||
|
|
##
|
||
|
|
## Used by both message store and store protocol.
|
||
|
|
|
||
|
|
import nimcrypto/hash
|
||
|
|
|
||
|
|
type
|
||
|
|
Index* = object
|
||
|
|
## This type contains the description of an Index used in the pagination of WakuMessages
|
||
|
|
digest*: MDigest[256]
|
||
|
|
receivedTime*: float64
|