| 108 | }; |
| 109 | |
| 110 | int main() { |
| 111 | auto use_gui_view = true; |
| 112 | |
| 113 | // clang-format off |
| 114 | auto injector = di::make_injector( |
| 115 | model_module() |
| 116 | , app_module(use_gui_view) |
| 117 | ); |
| 118 | // clang-format on |
| 119 | |
| 120 | injector.create<app>(); |
| 121 | } |
nothing calls this directly
no test coverage detected