mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
19 lines
214 B
Elixir
19 lines
214 B
Elixir
defmodule SystemEngine do
|
|
@moduledoc """
|
|
Documentation for SystemEngine.
|
|
"""
|
|
|
|
@doc """
|
|
Hello world.
|
|
|
|
## Examples
|
|
|
|
iex> SystemEngine.hello()
|
|
:world
|
|
|
|
"""
|
|
def hello do
|
|
:world
|
|
end
|
|
end
|