elstat/lib/adapters/adapter.ex
2018-06-11 04:24:16 -03:00

7 lines
169 B
Elixir

defmodule Elstat.Adapter do
@type adapter_check_res :: {:ok, any()} | {:error, any()}
@type adp_args :: Map.t
@callback check(adp_args) :: adapter_check_res
end