| 1211 | } |
| 1212 | |
| 1213 | std::string NanaBox::SerializeConfiguration( |
| 1214 | NanaBox::VirtualMachineConfiguration const& Configuration) |
| 1215 | { |
| 1216 | nlohmann::json Result; |
| 1217 | |
| 1218 | Result["NanaBox"] = NanaBox::FromVirtualMachineConfiguration(Configuration); |
| 1219 | Result["NanaBox"]["Type"] = "VirtualMachine"; |
| 1220 | |
| 1221 | return Result.dump(2); |
| 1222 | } |
nothing calls this directly
no outgoing calls
no test coverage detected