7 lines
169 B
Elixir
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
|