Packages

An Elixir native microservice runtime for the kappa architecture. Simplify your infrastructure from code.

Current section

Files

Jump to
tent lib tent.ex
Raw

lib/tent.ex

defmodule Tent do
@moduledoc """
Documentation for `Tent`.
"""
@doc """
Hello world.
## Examples
iex> Tent.hello()
:world
"""
def hello do
:world
end
end