goldenChat base source add

This commit is contained in:
aidev
2026-05-23 15:11:48 +09:00
commit a4ea7762b5
2081 changed files with 1155760 additions and 0 deletions
@@ -0,0 +1,11 @@
package com.goldenchart.dto;
import lombok.Builder;
@Builder
public record UpbitApiCredentials(String accessKey, String secretKey) {
public boolean isComplete() {
return accessKey != null && !accessKey.isBlank()
&& secretKey != null && !secretKey.isBlank();
}
}