farside/lib/service.ex
Ben Busby d334fc7695
Move Service struct def to its own module
Service struct now defined in lib/service.ex

This makes a bit more sense now that its a shared resource, rather than
just defining it only in the update.exs script.
2021-11-10 11:48:39 -07:00

7 lines
128 B
Elixir

defmodule Service do
defstruct type: nil,
test_url: nil,
fallback: nil,
instances: []
end