Pet

This is an account management tool, compat with pit.

currently only reading is supported

Usage

iex> {:ok, p} = Pet.start_link
{:ok, #PID<0.110.0>}
iex> Pet.get(p, "github.com")
%{"username" => "Joe_noh", "password" => "foobar"}

# name option
iex > Pet.start_link(name: Pet)
{:ok, #PID<0.112.0>}
iex> Pet.get(Pet, "github.com")
%{"username" => "Joe_noh", "password" => "foobar"}

Contributing

Very, very welcomed.