Packages

An opinionated bot framework that gets out of your way when you need it to.

Current section

Files

Jump to
legs lib legs.ex
Raw

lib/legs.ex

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