18 lines
206 B
Elixir
18 lines
206 B
Elixir
defmodule PatchPanel do
|
|
@moduledoc """
|
|
Documentation for PatchPanel.
|
|
"""
|
|
|
|
@doc """
|
|
Hello world.
|
|
|
|
## Examples
|
|
|
|
iex> PatchPanel.hello
|
|
:world
|
|
|
|
"""
|
|
def hello do
|
|
:world
|
|
end
|
|
end
|