moved middleware into more relevant location. Adding send test notifications handler. making sure that config is available from web handler functions.

This commit is contained in:
Jason Kulatunga
2020-09-12 13:19:08 -07:00
parent c913cf39b9
commit 78a619b09d
5 changed files with 58 additions and 5 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ type Notify struct {
Payload Payload
}
func (n *Notify) Send(level string, payload interface{}) error {
func (n *Notify) Send() error {
//validate that the Payload is populated
sendDate := time.Now()
n.Payload.Date = sendDate.Format(time.RFC3339)