Current section
Files
Jump to
Current section
Files
lib/workflow_dsl.ex
defmodule WorkflowDsl do
@moduledoc """
Documentation for `WorkflowDsl`.
"""
@doc """
Hello world.
## Examples
iex> WorkflowDsl.hello()
:world
"""
def hello do
:world
end
end