Add Amqp notification client (#63)

This commit is contained in:
Marcelo Castagna
2020-05-25 12:27:12 -03:00
committed by GitHub
parent e652699435
commit a10464ebd4
10 changed files with 194 additions and 1 deletions

View File

@@ -52,6 +52,14 @@ func TestLoad(t *testing.T) {
Schedule: "*/30 * * * *",
},
Notif: model.Notif{
Amqp: model.NotifAmqp{
Enable: false,
Host: "localhost",
Port: 5672,
Username: "guest",
Password: "guest",
Queue: "queue",
},
Gotify: model.NotifGotify{
Enable: false,
Endpoint: "http://gotify.foo.com",