Packages

Is a mailer component for sending & recieving emails. The name comes from the greek messanger of the gods.

Current section

Files

Jump to
hermes lib hermes.ex
Raw

lib/hermes.ex

defmodule Hermes do
use Application
def start, do: start(:normal, [])
def start(type, args),
do: Hermes.Supervisor.start_link(type, args)
end