16 lines
374 B
Java
16 lines
374 B
Java
package com.example.passbatch.config;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
@Getter
|
|
@Setter
|
|
@Component
|
|
@ConfigurationProperties(prefix = "kakaotalk")
|
|
public class KakaoTalkMessageConfig {
|
|
private String host;
|
|
private String token;
|
|
} |