diff options
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go new file mode 100644 index 0000000..5a8a6ca --- /dev/null +++ b/config/config.go @@ -0,0 +1,11 @@ +package config + +type Config struct { + Realm string `json:"realm"` + KDC []string `json:"kdc"` + AdminServer []string `json:"admin_server"` + KPasswdServer []string `json:"kpasswd_server"` + + Username string `json:"username"` + Password string `json:"password"` +} |