Current section

Files

Jump to
heartcheck lib heartcheck check.ex
Raw

lib/heartcheck/check.ex

defmodule HeartCheck.Check do
@moduledoc """
Behaviour for modules that can be added as a check in `HeartCheck.add/2`
"""
@doc """
Function that performs the test itself
"""
@callback call() :: HeartCheck.result()
end