WithBootstrapStdOS toggles std/os module registration in bootstrap.
(enabled bool)
| 325 | |
| 326 | // WithBootstrapStdOS toggles std/os module registration in bootstrap. |
| 327 | func WithBootstrapStdOS(enabled bool) ContextBootstrapOption { |
| 328 | return func(o *ContextBootstrapOptions) { |
| 329 | o.loadStdOS = enabled |
| 330 | } |
| 331 | } |
| 332 | |
| 333 | // WithBootstrapTimers toggles timer injection in bootstrap. |
| 334 | // |
no outgoing calls