Octogram.Services_cache
type service_kind =
| Metrics
| Rpc
| Http
| P2p
type node_kind =
| Mavkit_node
| Rollup_node
| Dac_node
| Http_server
| Dal_node
val int_of_service_kind : node_kind -> int
module Cache : sig ... end
type t = (service_kind * int) list Cache.t
val empty : 'a Cache.t
val add : 'a list Cache.t -> string -> node_kind -> 'a list -> 'a list Cache.t
val remove : 'a Cache.t -> string -> node_kind -> 'a Cache.t
val get : ('a * 'b) list Cache.t -> string -> node_kind -> 'c -> 'd