mirror of
https://github.com/balzack/databag.git
synced 2025-02-11 19:19:16 +00:00
15 lines
263 B
Go
15 lines
263 B
Go
package repeater
|
|
|
|
//PushMessage notification
|
|
type PushMessage struct {
|
|
Title string `json:"title"`
|
|
Body string `json:"body"`
|
|
Token string `json:"token"`
|
|
}
|
|
|
|
//PushResponse notification response
|
|
type PushResponse struct {
|
|
Message string `json:"message"`
|
|
}
|
|
|