Packages

Find the mail exchanger for a given hostname.

Current section

Files

Jump to
mx_tool lib request.ex
Raw

lib/request.ex

defmodule MxTool.Request do
@moduledoc false
alias MxTool.Request
defstruct [
:domain
]
def new(domain) when is_binary(domain) do
%Request{domain: domain}
end
end