Current section

Files

Jump to
diffo lib diffo.ex
Raw

lib/diffo.ex

# SPDX-FileCopyrightText: 2025 diffo contributors <https://github.com/diffo-dev/ash_neo4j/graphs.contributors>
#
# SPDX-License-Identifier: MIT
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