Implement ProcessorAPIWebClient

This commit is contained in:
woo-jin.shin
2021-09-05 19:24:45 +09:00
parent 3f912d8c84
commit 98c34bb468
28 changed files with 390 additions and 113 deletions

View File

@@ -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;
}
}

View File

@@ -1,4 +1,4 @@
package com.myoa.engineering.music.soundhoundfound.support.util;
package com.myoa.engineering.crawl.ppomppu.support.util;
public final class NumberUtil {

View File

@@ -1,4 +1,4 @@
package com.myoa.engineering.music.soundhoundfound.support.util;
package com.myoa.engineering.crawl.ppomppu.support.util;
public final class ObjectUtil {

View File

@@ -0,0 +1,4 @@
package com.myoa.engineering.crawl.ppomppu.support.webclient;
public interface WebClientBaseScan {
}

View File

@@ -1,4 +0,0 @@
package com.myoa.engineering.music.soundhoundfound.support.webclient;
public interface WebClientBaseScan {
}