Add patch_panel example
This commit is contained in:
parent
b16cafbb5c
commit
51729542f3
12 changed files with 227 additions and 0 deletions
18
examples/patch_panel/lib/patch_panel.ex
Normal file
18
examples/patch_panel/lib/patch_panel.ex
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
defmodule PatchPanel do
|
||||
@moduledoc """
|
||||
Documentation for PatchPanel.
|
||||
"""
|
||||
|
||||
@doc """
|
||||
Hello world.
|
||||
|
||||
## Examples
|
||||
|
||||
iex> PatchPanel.hello
|
||||
:world
|
||||
|
||||
"""
|
||||
def hello do
|
||||
:world
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue