Files
ElixirClusterTest/global_bck_job/lib/global_bck_job.ex
Marc-Eric Martel a8ffb43ec8 init
2023-10-22 10:39:08 -04:00

19 lines
230 B
Elixir

defmodule GlobalBackgroundJob do
@moduledoc """
Documentation for `GlobalBckJob`.
"""
@doc """
Hello world.
## Examples
iex> GlobalBackgroundJob.hello()
:world
"""
def hello do
:world
end
end