Current section

Files

Jump to
incident lib incident command.ex
Raw

lib/incident/command.ex

defmodule Incident.Command do
@moduledoc """
Defines the API for a Command.
"""
@doc """
Returns if a command is valid or not.
"""
@callback valid?(struct) :: boolean
end