Current section

Files

Jump to
commit_hook lib commit_hook.ex
Raw

lib/commit_hook.ex

defmodule CommitHook do
@moduledoc false
@doc """
Hello world.
## Examples
iex> CommitHook.hello()
:world
"""
def hello do
:world
end
end