d334fc7695
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.
6 lines
128 B
Elixir
6 lines
128 B
Elixir
defmodule Service do
|
|
defstruct type: nil,
|
|
test_url: nil,
|
|
fallback: nil,
|
|
instances: []
|
|
end
|