This commit is contained in:
Marc-Eric Martel
2023-10-22 10:39:08 -04:00
commit a8ffb43ec8
12 changed files with 231 additions and 0 deletions

View File

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