17 lines
434 B
Go
17 lines
434 B
Go
package discovery
|
|
|
|
import (
|
|
"git.loafle.net/overflow/model/meta"
|
|
"git.loafle.net/overflow/model/util"
|
|
)
|
|
|
|
type Service struct {
|
|
MetaCryptoType *meta.MetaCryptoType `json:"metaCryptoType,omitempty"`
|
|
Key string `json:"key,omitempty"`
|
|
Description string `json:"description,omitempty"`
|
|
|
|
Port *Port `json:"port,omitempty"`
|
|
|
|
DiscoveredDate *util.Timestamp `json:"discoveredDate,omitempty"`
|
|
}
|