-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from marinesnow34/test
Feat: SOLAPI 알림톡 발송 연결
- Loading branch information
Showing
4 changed files
with
135 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/main/java/com/readyvery/readyverydemo/src/order/config/SolApiConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.readyvery.readyverydemo.src.order.config; | ||
|
||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.context.annotation.Configuration; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
@Configuration | ||
public class SolApiConfig { | ||
public static final String SOLAPI_URL = "https://api.solapi.com"; | ||
|
||
@Value("${solapi.api_key}") | ||
private String apiKey; | ||
|
||
@Value("${solapi.secret_key}") | ||
private String apiSecret; | ||
|
||
@Value("${solapi.templete.cancel}") | ||
private String templeteCancel; | ||
|
||
@Value("${solapi.templete.pickup}") | ||
private String templetePickup; | ||
|
||
@Value("${solapi.templete.order}") | ||
private String templeteOrder; | ||
|
||
@Value("${solapi.kakao.pfid}") | ||
private String kakaoPfid; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters