goldenChat base source add
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user