I think we're getting there

This commit is contained in:
Philipp Heckel 2021-12-18 16:12:36 -05:00
parent f266afa1de
commit 2c1989beb0
3 changed files with 73 additions and 58 deletions

View file

@ -11,8 +11,8 @@
# Here's a (hopefully self-explanatory) example:
# subscribe:
# - topic: mytopic
# exec: /usr/local/bin/mytopic-triggered.sh
# command: /usr/local/bin/mytopic-triggered.sh
# - topic: myserver.com/anothertopic
# exec: 'echo "$message"'
# command: 'echo "$message"'
#
# subscribe:

View file

@ -7,8 +7,8 @@ const (
type Config struct {
DefaultHost string
Subscribe []struct {
Topic string
Exec string
Topic string
Command string
}
}