add notify service

This commit is contained in:
Sam Lewis
2022-11-06 15:00:39 -05:00
parent e3e7889574
commit ba9132745e
5 changed files with 49 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
package types
type NotifyRequest struct {
// Which notify service to call, such as mobile_app_sams_iphone
ServiceName string
Message string
Title string
Data map[string]any
}