Create webhook service to alert on Matrix

This commit is contained in:
Remi Rampin 2022-11-04 19:28:42 -04:00
commit 041eef2a7d
7 changed files with 600 additions and 0 deletions

15
pyproject.toml Normal file
View file

@ -0,0 +1,15 @@
[tool.poetry]
name = "grafana-webhook-to-matrix"
version = "0.1.0"
description = ""
authors = ["Remi Rampin <remi@rampin.org>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"