Packages

Another crawler for Elixir inspired on Tesla.

Current section

Files

Jump to
ex_crawlzy lib client interface.ex
Raw

lib/client/interface.ex

defmodule ExCrawlzy.Client.Crawler do
@moduledoc """
Interface to implement a new ExCrawlzy client
"""
defmodule Interface do
@callback crawl(String.t()) :: {:ok, map()} | {:error, nil}
end
end