Current section
Files
Jump to
Current section
Files
lib/tiny_util.ex
defmodule TinyUtil do
@moduledoc """
Documentation for TinyUtil.
"""
@doc """
Hello world.
## Examples
iex> TinyUtil.hello
:world
"""
def hello do
:world
end
defdelegate timeout(call_fn, opts \\ []), to: TinyUtil.Timeout
defdelegate timeout!(call_fn, opts \\ []), to: TinyUtil.Timeout
end