9 lines
195 B
Elixir
Raw Permalink Normal View History

2021-07-12 14:29:27 +03:00
defmodule ExDataGovUA.Fetchers.Base do
@type data :: map()
@type status :: Atom.t()
@type url :: String.t()
@type method :: Atom.t()
@callback fetch(method, url) :: {status, data}
end