8 lines
170 B
Go
8 lines
170 B
Go
|
package model
|
||
|
|
||
|
type DiscoveryZone struct {
|
||
|
ExcludePatterns []string `json:"excludePatterns,omitempty"`
|
||
|
|
||
|
DiscoveryHost *DiscoveryHost `json:"discoveryHost,omitempty"`
|
||
|
}
|