8 lines
142 B
Go
8 lines
142 B
Go
|
package types
|
||
|
|
||
|
type TSIGKey struct {
|
||
|
Algorithm string `json:"algorithm"`
|
||
|
Name string `json:"name"`
|
||
|
Secret string `json:"secret"`
|
||
|
}
|