summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorLizzy Hunt <lizzy.hunt@usu.edu>2024-03-27 15:10:39 -0600
committerLizzy Hunt <lizzy.hunt@usu.edu>2024-03-27 15:10:39 -0600
commit97efd2a3740412ec78a018da4fe068c141c9d1ec (patch)
tree73904689d6c69898bd834533d33b65106b14ce3e /go.mod
parent0dc2679005e70c50024bc49e750f3998a0c4c24b (diff)
downloadhatecomputers.club-97efd2a3740412ec78a018da4fe068c141c9d1ec.tar.gz
hatecomputers.club-97efd2a3740412ec78a018da4fe068c141c9d1ec.zip
clean up old sessions every 500 seconds
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod6
1 files changed, 5 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index adf01a9..4a8b362 100644
--- a/go.mod
+++ b/go.mod
@@ -3,14 +3,18 @@ module git.hatecomputers.club/hatecomputers/hatecomputers.club
go 1.22.1
require (
+ github.com/go-co-op/gocron v1.37.0
github.com/joho/godotenv v1.5.1
github.com/mattn/go-sqlite3 v1.14.22
+ golang.org/x/oauth2 v0.18.0
)
require (
github.com/golang/protobuf v1.5.3 // indirect
+ github.com/google/uuid v1.4.0 // indirect
+ github.com/robfig/cron/v3 v3.0.1 // indirect
+ go.uber.org/atomic v1.9.0 // indirect
golang.org/x/net v0.22.0 // indirect
- golang.org/x/oauth2 v0.18.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)