mirror of
https://github.com/benbusby/farside.git
synced 2025-04-29 23:20:03 +00:00
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.
This commit is contained in:
parent
f33279c41b
commit
d334fc7695
2 changed files with 9 additions and 12 deletions
6
lib/service.ex
Normal file
6
lib/service.ex
Normal file
|
@ -0,0 +1,6 @@
|
|||
defmodule Service do
|
||||
defstruct type: nil,
|
||||
test_url: nil,
|
||||
fallback: nil,
|
||||
instances: []
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue