argos/dmp-backend/core/src/main/java/eu/eudat/service/responseutils/ResponseUtilsService.java

8 lines
216 B
Java
Raw Normal View History

2023-10-24 17:00:11 +02:00
package eu.eudat.service.responseutils;
import org.springframework.http.ResponseEntity;
public interface ResponseUtilsService {
ResponseEntity<byte[]> buildResponseFileFromText(String text, String fileName);
}