mirror of
https://github.com/lucasroyerdev/stock-pignon.git
synced 2026-05-10 02:52:26 +00:00
19 lines
494 B
Java
19 lines
494 B
Java
// Config.java
|
|
package com.stock.pignon;
|
|
|
|
public class Config {
|
|
// Folder on sd card
|
|
public static final String EXTERNAL_DIR_NAME = "stock_pignon";
|
|
|
|
// Folder on sd card
|
|
public static final String IMAGES_SUBDIR_NAME = "images";
|
|
|
|
// Input json
|
|
public static final String INPUT_JSON_NAME = "pieces.json";
|
|
|
|
// Output json
|
|
public static final String OUTPUT_JSON_NAME = "stock.json";
|
|
|
|
// Output json
|
|
public static final String OUTPUT_CSV_NAME = "stock.csv";
|
|
} |