StartWithOptions is the same as Start after the application of any handler options specified
(handler interface{}, options ...Option)
| 69 | |
| 70 | // StartWithOptions is the same as Start after the application of any handler options specified |
| 71 | func StartWithOptions(handler interface{}, options ...Option) { |
| 72 | start(newHandler(handler, options...)) |
| 73 | } |
| 74 | |
| 75 | type startFunction struct { |
| 76 | env string |
searching dependent graphs…