move structs
This commit is contained in:
parent
b765ac8a8c
commit
4ef4647646
1 changed files with 15 additions and 0 deletions
15
proto/structs.go
Normal file
15
proto/structs.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
package proto
|
||||
|
||||
import "net/url"
|
||||
|
||||
type Service struct {
|
||||
Name string
|
||||
Type string
|
||||
Url url.URL
|
||||
}
|
||||
|
||||
type ServiceStatus struct {
|
||||
Name string
|
||||
Ok bool
|
||||
Status string
|
||||
}
|
Loading…
Reference in a new issue