()
| 25 | } |
| 26 | |
| 27 | func (c *config) String() string { |
| 28 | return fmt.Sprintf("enabled '%v', default_run '%v', max_procs '%d'", |
| 29 | c.Enabled, c.DefaultRun, c.MaxProcs) |
| 30 | } |
| 31 | |
| 32 | func (c *config) isExplicitlyEnabled(moduleName string) bool { |
| 33 | return c.isEnabled(moduleName, true) |
no outgoing calls