9 lines
299 B
Elixir
9 lines
299 B
Elixir
defmodule Prymn.Agents.Health do
|
|
@moduledoc """
|
|
The Health struct keeps simple health information of whether or not the
|
|
target host machine is up to date, has any tasks running, its resources are
|
|
getting depleted, or if it's unable be reached.
|
|
"""
|
|
|
|
# defstruct status: :disconnected
|
|
end
|