revise pull

This commit is contained in:
Hannes Mehnert 2022-09-20 14:22:13 +02:00
parent 4d80d920d9
commit 9bf023ef2c

View file

@ -12,4 +12,10 @@ val to_octets : t -> string Lwt.t
val of_octets : string -> (t, [`Msg of string]) result Lwt.t val of_octets : string -> (t, [`Msg of string]) result Lwt.t
val pull : t -> (unit, [ `Msg of string ]) result Lwt.t type change = [
| `Add of key
| `Remove of key
| `Change of key
]
val pull : t -> (change list, [ `Msg of string ]) result Lwt.t