简单地读取不同环境的配置, 目前仅限于YAML
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

18 lignes
307 B

  1. package grconfig
  2. import "bytes"
  3. type ConfigerChannelXML struct {
  4. io bytes.Buffer
  5. filename string
  6. adapter string
  7. }
  8. func (c ConfigerChannelXML) Item(item string, t interface{}) (err error) {
  9. panic("implement me")
  10. }
  11. func (c ConfigerChannelXML) String(s string) string {
  12. panic("implement me")
  13. }