10 lines
183 B
Go
10 lines
183 B
Go
|
package discovery
|
||
|
|
||
|
import (
|
||
|
"git.loafle.net/overflow/model/config/credential"
|
||
|
)
|
||
|
|
||
|
type DiscoveryConfig struct {
|
||
|
Credentials credential.CredentialMap `json:"credentials,omitempty"`
|
||
|
}
|