AB#2064 Feat/config/dev config to config (#139)

Renamed dev-config to config, additionally changed cdbg config to yaml.
This commit is contained in:
Fabian Kammel 2022-05-13 11:56:43 +02:00 committed by GitHub
parent fde7304d78
commit 83857b142c
20 changed files with 175 additions and 189 deletions

View file

@ -2,6 +2,6 @@ package ssh
// SSHKey describes a public ssh key.
type SSHKey struct {
Username string `json:"user"`
KeyValue string `json:"pubkey"`
Username string `yaml:"user"`
KeyValue string `yaml:"pubkey"`
}