strip file
This commit is contained in:
parent
3ce2ab88f5
commit
4e539361fa
@ -28,6 +28,33 @@ type Registry interface {
|
|||||||
String() string
|
String() string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Service struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Version string `json:"version"`
|
||||||
|
Metadata map[string]string `json:"metadata"`
|
||||||
|
Endpoints []*Endpoint `json:"endpoints"`
|
||||||
|
Nodes []*Node `json:"nodes"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Node struct {
|
||||||
|
Id string `json:"id"`
|
||||||
|
Address string `json:"address"`
|
||||||
|
Metadata map[string]string `json:"metadata"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Endpoint struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Request *Value `json:"request"`
|
||||||
|
Response *Value `json:"response"`
|
||||||
|
Metadata map[string]string `json:"metadata"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Value struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Type string `json:"type"`
|
||||||
|
Values []*Value `json:"values"`
|
||||||
|
}
|
||||||
|
|
||||||
type Option func(*Options)
|
type Option func(*Options)
|
||||||
|
|
||||||
type RegisterOption func(*RegisterOptions)
|
type RegisterOption func(*RegisterOptions)
|
||||||
|
@ -1,28 +0,0 @@
|
|||||||
package registry
|
|
||||||
|
|
||||||
type Service struct {
|
|
||||||
Name string `json:"name"`
|
|
||||||
Version string `json:"version"`
|
|
||||||
Metadata map[string]string `json:"metadata"`
|
|
||||||
Endpoints []*Endpoint `json:"endpoints"`
|
|
||||||
Nodes []*Node `json:"nodes"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type Node struct {
|
|
||||||
Id string `json:"id"`
|
|
||||||
Address string `json:"address"`
|
|
||||||
Metadata map[string]string `json:"metadata"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type Endpoint struct {
|
|
||||||
Name string `json:"name"`
|
|
||||||
Request *Value `json:"request"`
|
|
||||||
Response *Value `json:"response"`
|
|
||||||
Metadata map[string]string `json:"metadata"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type Value struct {
|
|
||||||
Name string `json:"name"`
|
|
||||||
Type string `json:"type"`
|
|
||||||
Values []*Value `json:"values"`
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user