diff options
author | Linnnus <[email protected]> | 2024-10-01 22:29:21 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-10-01 22:29:21 +0200 |
commit | f5c119fdaf444fc0b1b59c1e07fd32a5f6ddf069 (patch) | |
tree | fd63a803e3ffa3b9e1c05549ae29eeace7adbcf0 /examples/config.json |
Initial commit
Diffstat (limited to 'examples/config.json')
-rw-r--r-- | examples/config.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/config.json b/examples/config.json new file mode 100644 index 0000000..6cbdade --- /dev/null +++ b/examples/config.json @@ -0,0 +1,20 @@ +{ + "secret_file": "./examples/secret.txt", + + "commands": [ + { + "event": "ping", + "command": "/bin/echo", + "args": [ + "Got ping event!!" + ] + }, + { + "event": "push", + "command": "/bin/echo", + "args": [ + "Got push event!!" + ] + } + ] +} |