Current section

Files

Jump to
diffo lib diffo.ex
Raw

lib/diffo.ex

defmodule Diffo do
@moduledoc """
Diffo - TMF Service and Resource Management with a difference
Diffo - Application entry point
"""
@spec hey() :: String.t()
@doc """
Hello Diffo
## Examples
iex> Diffo.hey()
"diffo>"
"""
def hey do
"diffo>"
end
end