(debug bool)
| 40 | } |
| 41 | |
| 42 | func LoadOptionDebug(debug bool) ConfigLoaderOption { |
| 43 | return func(o *LoadOptions) { |
| 44 | o.debug = debug |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | func LoadOptionThreads(threads int) ConfigLoaderOption { |
| 49 | return func(o *LoadOptions) { |
no outgoing calls
no test coverage detected