mirror of
https://github.com/benbusby/farside.git
synced 2025-03-15 11:46:32 -04:00

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