This commit is contained in:
crusader 2018-06-21 19:28:20 +09:00
parent 292dd88aae
commit 7e2ff26648
2 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,8 @@ import (
type Service struct {
MetaCryptoType *meta.MetaCryptoType `json:"metaCryptoType,omitempty"`
Name string `json:"name,omitempty"`
Key string `json:"key,omitempty"`
Description string `json:"description,omitempty"`
Port *Port `json:"port,omitempty"`

View File

@ -7,4 +7,5 @@ type InfraService struct {
MetaTargetServiceType *meta.MetaTargetServiceType `json:"metaTargetServiceType,omitempty"`
InfraHostPort *InfraHostPort `json:"infraHostPort,omitempty"`
MetaCryptoType *meta.MetaCryptoType `json:"metaCryptoType,omitempty"`
Description string `json:"description,omitempty"`
}