Packages

Implements Pact Consumer Driven Contracts

Current section

Files

Jump to
expact lib ex_pact.ex
Raw

lib/ex_pact.ex

defmodule ExPact do
@moduledoc """
Documentation for `ExPact`.
"""
@doc """
Hello world.
## Examples
iex> ExPact.hello()
:world
"""
def hello do
:world
end
end