Packages

A lightweight and functional http server designed from the ground up to work with plug.

Current section

Files

Jump to
flux lib flux.ex
Raw

lib/flux.ex

defmodule Flux do
@moduledoc """
Documentation for Flux.
"""
@doc """
Hello world.
## Examples
iex> Flux.hello
:world
"""
def hello do
:world
end
end