(inventoryText, inventoryFormat string)
| 350 | } |
| 351 | |
| 352 | func writeTempInventory(inventoryText, inventoryFormat string) (path string, cleanup func(), err error) { |
| 353 | return writeTempInventoryResult(InventoryResult{ |
| 354 | Source: InventorySourcePvetui, |
| 355 | Format: inventoryFormat, |
| 356 | Text: inventoryText, |
| 357 | }) |
| 358 | } |
| 359 | |
| 360 | func writeTempInventoryResult(inventory InventoryResult) (path string, cleanup func(), err error) { |
| 361 | ext := ".ini" |
no test coverage detected