exclude fields so that they are not serialized when we're rewritting api.yaml file (#103)

This commit is contained in:
Thibault "bui" Koechlin 2020-06-29 17:47:57 +02:00 committed by GitHub
parent 02b2193d64
commit e4993996a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,14 +31,14 @@ type ApiCtx struct {
CfgUser string `yaml:"machine_id"`
CfgPassword string `yaml:"password"`
Creds ApiCreds `yaml:"-"`
Muted bool `yaml:"muted"`
DebugDump bool `yaml:"debug_dump"`
/*mostly for mocking/faking api*/
Muted bool `yaml:"-"`
DebugDump bool `yaml:"-"`
/*runtime*/
tokenExpired bool `yaml:"-"`
toPush []types.Event `yaml:"-"`
Http *sling.Sling `yaml:"-"`
PusherTomb tomb.Tomb
PusherTomb tomb.Tomb `yaml:"-"`
}
type ApiCreds struct {