* Register a callback that can be used to configure the ace * kernel before the handle method is called * * @param callback - Configuration callback function
(callback: (app: ApplicationService) => Promise<void> | void)
| 53 | * @param callback - Configuration callback function |
| 54 | */ |
| 55 | configure(callback: (app: ApplicationService) => Promise<void> | void): this { |
| 56 | this.#configureCallback = callback |
| 57 | return this |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Handles the command line arguments and executes |
no outgoing calls
no test coverage detected