InitWithOptions initializes celer with options.
(opts InitOption)
| 123 | |
| 124 | // InitWithOptions initializes celer with options. |
| 125 | func (c *Celer) InitWithOptions(opts InitOption) error { |
| 126 | return c.InitWithPlatform(c.Main.Platform, opts) |
| 127 | } |
| 128 | |
| 129 | // InitWithPlatform initializes celer with platform. |
| 130 | func (c *Celer) InitWithPlatform(platform string, opts InitOption) error { |
no test coverage detected