Initial Commit

This commit is contained in:
2021-04-23 16:02:15 +02:00
commit 341e5767be
21 changed files with 991 additions and 0 deletions

7
pkg/types/tsigkey.go Normal file
View File

@ -0,0 +1,7 @@
package types
type TSIGKey struct {
Algorithm string `json:"algorithm"`
Name string `json:"name"`
Secret string `json:"secret"`
}