Packages

Find the mail exchanger for a given hostname.

Current section

Files

Jump to
mx_tool lib adapter base.ex
Raw

lib/adapter/base.ex

defmodule MxTool.Adapter.Base do
@moduledoc ~S"""
"""
@type request :: %MxTool.Request{}
@type success :: {:ok, %MxTool.Response{}}
@type error :: {:invalid, :no_records}
@callback lookup(request) :: success | error
end