defmodule Prymn.Agents.Agent do
defstruct [:id, :health, status: :disconnected]
def new(id) do
%__MODULE__{id: id}
end