secret.go 199 B

1234567891011
  1. package config
  2. /*
  3. Secret our service configuration
  4. */
  5. type Secret struct {
  6. MongoDB struct {
  7. Username string `yaml:"username"`
  8. Password string `yaml:"password"`
  9. } `yaml:"mongodb"`
  10. }