more cleanup
All checks were successful
deploy / deploy (push) Successful in 42s

This commit is contained in:
Lee
2024-04-08 05:22:54 +01:00
parent 205ae144c0
commit 3f7f1864a6
16 changed files with 218 additions and 154 deletions

View File

@ -0,0 +1,18 @@
package cc.fascinated.util;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter @AllArgsConstructor
public class Tuple<L, R> {
/**
* The left value of the tuple.
*/
private final L left;
/**
* The right value of the tuple.
*/
private final R right;
}

View File

@ -1,5 +1,8 @@
package cc.fascinated.util;
import lombok.experimental.UtilityClass;
@UtilityClass
public class UUIDUtils {
/**

View File

@ -1,10 +1,12 @@
package cc.fascinated.util;
import lombok.experimental.UtilityClass;
import org.springframework.http.ResponseEntity;
import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
import org.springframework.web.client.HttpClientErrorException;
import org.springframework.web.client.RestClient;
@UtilityClass
public class WebRequest {
/**