mirror of
https://github.com/benbusby/farside.git
synced 2025-06-08 02:16:36 +00:00
8 lines
146 B
Elixir
8 lines
146 B
Elixir
defmodule Service do
|
|
@moduledoc nil
|
|
|
|
defstruct type: nil,
|
|
test_url: nil,
|
|
fallback: nil,
|
|
instances: []
|
|
end
|