diff options
author | terminaldweller <thabogre@gmail.com> | 2021-02-23 10:01:14 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-02-23 10:01:14 +0000 |
commit | c2b3c437772df57162385555933aac440308b31c (patch) | |
tree | ee0160dad06e1cf4e331d88836e1aae8be05721d /go.mod | |
parent | forgot to add the parser... (diff) | |
download | hived-c2b3c437772df57162385555933aac440308b31c.tar.gz hived-c2b3c437772df57162385555933aac440308b31c.zip |
removed the expression parser. using a lib now. the addalert endpoint is working. alert messages about fullfilment in tg now. using redis as db to keep the alerts in.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +module github.com/terminaldweller/hived + +go 1.15 + +require ( + github.com/Knetic/govaluate v3.0.0+incompatible + github.com/go-redis/redis/v8 v8.6.0 + github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible + github.com/technoweenie/multipartstreamer v1.0.1 // indirect +) |