Current section
Files
Jump to
Current section
Files
lib/commit_hook.ex
defmodule CommitHook do
@moduledoc false
@doc """
Hello world.
## Examples
iex> CommitHook.hello()
:world
"""
def hello do
:world
end
end