All checks were successful
Build and Publish / build-release (push) Successful in 4m46s
19 lines
225 B
Elixir
19 lines
225 B
Elixir
defmodule ProviderService do
|
|
@moduledoc """
|
|
Documentation for `ProviderService`.
|
|
"""
|
|
|
|
@doc """
|
|
Hello world.
|
|
|
|
## Examples
|
|
|
|
iex> ProviderService.hello()
|
|
:world
|
|
|
|
"""
|
|
def hello do
|
|
:world
|
|
end
|
|
end
|