mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-03 22:43:09 +00:00
13 lines
293 B
Nim
13 lines
293 B
Nim
{.push raises: [Defect].}
|
|
|
|
import
|
|
stew/results
|
|
import
|
|
./message_store
|
|
|
|
type RetentionPolicyResult*[T] = Result[T, string]
|
|
|
|
type MessageRetentionPolicy* = ref object of RootObj
|
|
|
|
|
|
method execute*(p: MessageRetentionPolicy, store: MessageStore): RetentionPolicyResult[void] {.base.} = discard |