dotfiles/app/lib/prymn/agents/agent.ex
2024-02-01 23:54:23 +02:00

7 lines
134 B
Elixir

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