aboutsummaryrefslogtreecommitdiffstats
path: root/go.mod
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2021-02-23 10:01:14 +0000
committerterminaldweller <thabogre@gmail.com>2021-02-23 10:01:14 +0000
commitc2b3c437772df57162385555933aac440308b31c (patch)
treeee0160dad06e1cf4e331d88836e1aae8be05721d /go.mod
parentforgot to add the parser... (diff)
downloadhived-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.mod10
1 files changed, 10 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..54eca8b
--- /dev/null
+++ b/go.mod
@@ -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
+)