feat: add csv output support, refactor files const

This commit is contained in:
2026-01-19 10:00:00 +01:00
parent 049a8d08cb
commit cca2183e3d
6 changed files with 85 additions and 37 deletions

View File

@@ -9,8 +9,11 @@ public class Config {
public static final String IMAGES_SUBDIR_NAME = "images";
// Input json
public static final String PIECES_FILE_NAME = "pieces.json";
public static final String INPUT_JSON_NAME = "pieces.json";
// Output json
public static final String STOCK_FILE_NAME = "stock.json";
public static final String OUPUT_JSON_NAME = "stock.json";
// Output json
public static final String OUPUT_CSV_NAME = "stock.csv";
}