Hello All,
we have to implement single file upload in existing Rest API Action from angular to Quarkus.
I am new Java and quarkus. not sure how to start. could you please share any document ?
Data contract:
````
@Data
public class CreateGlobalVariableModel {
private String key;
private String value;
private String valueType;
private String comments;
private Long userId;
}
````