initial version

This commit is contained in:
Robin Appelman 2021-01-07 20:40:24 +01:00
commit 51cba405ec
7 changed files with 1414 additions and 5 deletions

17
README.md Normal file
View file

@ -0,0 +1,17 @@
# rss-webhook-trigger
Trigger webhooks from rss feeds
### Configuration
```toml
interval = 600 # optional, defaults to 30 minutes
[[feed]]
feed = "https://example.com/feed1.xml"
hook = "https://hook.example.com/hook1/call"
[[feed]]
feed = "https://example.com/feed2.xml"
hook = "https://hook.example.com/hook2/call"
```