10 lines
248 B
Go
10 lines
248 B
Go
|
package config
|
||
|
|
||
|
// MeshMessageQueue describes mesh configurations.
|
||
|
type MeshMessageQueue struct {
|
||
|
Name string `json:"name"`
|
||
|
Host string `json:"host"`
|
||
|
Port int `json:"port"`
|
||
|
Credential string `json:"credential,omitempty"`
|
||
|
}
|