-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0550c90
commit b018415
Showing
2 changed files
with
23 additions
and
3 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
...ication/src/main/kotlin/team/comit/simtong/domain/notification/spi/SendPushMessagePort.kt
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,19 @@ | ||
package team.comit.simtong.domain.notification.spi | ||
|
||
import java.util.UUID | ||
|
||
/** | ||
* | ||
* 푸시 알림 전송을 요청하는 SendPushMessagePort | ||
* | ||
* @author kimbeomjin | ||
* @date 2022/12/30 | ||
* @version 1.1.0 | ||
**/ | ||
interface SendPushMessagePort { | ||
|
||
fun sendMessage(tokens: List<String>, title: String, content: String, identify: UUID?) | ||
|
||
fun sendMessage(token: String, title: String, content: String, identify: UUID?) | ||
|
||
} |
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