AddFeatures appends one or more features to the config.
(feats ...*Feature)
| 208 | |
| 209 | // AddFeatures appends one or more features to the config. |
| 210 | func (c *Config) AddFeatures(feats ...*Feature) *Config { |
| 211 | c.Features = append(c.Features, feats...) |
| 212 | return c |
| 213 | } |
| 214 | |
| 215 | // AddLimits appends one or more limits to the config. |
| 216 | func (c *Config) AddLimits(limits ...*Limit) *Config { |
no outgoing calls