Implement ProcessorAPIWebClient
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package com.myoa.engineering.crawl.ppomppu.support.dto.code;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* PpomppuBoardName
|
||||
* @author Shin Woo-jin (woo-jin.shin@linecorp.com)
|
||||
* @since 2021-09-05
|
||||
*
|
||||
*/
|
||||
@Getter
|
||||
@NoArgsConstructor
|
||||
public enum PpomppuBoardName {
|
||||
PPOMPPU_DOMESTIC("ppomppu"),
|
||||
PPOMPPU_OVERSEA("ppomppu4"),
|
||||
;
|
||||
|
||||
private String boardPath;
|
||||
|
||||
PpomppuBoardName(String boardPath) {
|
||||
this.boardPath = boardPath;
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.myoa.engineering.music.soundhoundfound.support.util;
|
||||
package com.myoa.engineering.crawl.ppomppu.support.util;
|
||||
|
||||
public final class NumberUtil {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.myoa.engineering.music.soundhoundfound.support.util;
|
||||
package com.myoa.engineering.crawl.ppomppu.support.util;
|
||||
|
||||
public final class ObjectUtil {
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.myoa.engineering.crawl.ppomppu.support.webclient;
|
||||
|
||||
public interface WebClientBaseScan {
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
package com.myoa.engineering.music.soundhoundfound.support.webclient;
|
||||
|
||||
public interface WebClientBaseScan {
|
||||
}
|
||||
Reference in New Issue
Block a user