peluquero v0.99.5 Peluquero.Utils View Source
Plain utilities for the project
Link to this section Summary
Functions
Quick check for the consul key
Link to this section Functions
Quick check for the consul key.
## Examples
iex> Peluquero.Utils.consul_key_type("a/b/c/")
{:nested, :bag, "a"}
iex> Peluquero.Utils.consul_key_type("a/b/c")
{:nested, :item, "a"}
iex> Peluquero.Utils.consul_key_type("a/")
{:plain, :bag, "a"}
iex> Peluquero.Utils.consul_key_type("a")
{:plain, :item, "a"}