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