| 643 | } |
| 644 | |
| 645 | static void WritePlugin(IIniWriter* writer) |
| 646 | { |
| 647 | auto model = &_config.plugin; |
| 648 | writer->WriteSection("plugin"); |
| 649 | writer->WriteBoolean("enable_hot_reloading", model->enableHotReloading); |
| 650 | writer->WriteString("allowed_hosts", model->allowedHosts); |
| 651 | } |
| 652 | |
| 653 | bool SetDefaults() |
| 654 | { |
no test coverage detected