Current section
Files
Jump to
Current section
Files
lib/alchemetrics_web.ex
defmodule AlchemetricsWeb do
@moduledoc """
Documentation for AlchemetricsWeb.
"""
@doc """
Hello world.
## Examples
iex> AlchemetricsWeb.hello
:world
"""
def hello do
:world
end
defmacro __using__(_) do
quote do
plug AlchemetricsWeb.PhoenixPlug
end
end
end