Move darkstorm_backend to just backend

Added MongoDB instances of DB tables
Updated some DB interfaces
Added logging to count cleanup
This commit is contained in:
Caleb Gardner
2024-06-12 03:31:09 -05:00
parent e3af23873f
commit 28654e237e
15 changed files with 246 additions and 22 deletions
+13 -3
View File
@@ -4,10 +4,20 @@ go 1.22.3
require (
github.com/google/uuid v1.6.0
golang.org/x/crypto v0.23.0
golang.org/x/crypto v0.24.0
github.com/golang-jwt/jwt/v5 v5.2.1
go.mongodb.org/mongo-driver v1.15.0
)
require (
github.com/golang-jwt/jwt/v5 v5.2.1
golang.org/x/sys v0.20.0 // indirect
github.com/golang/snappy v0.0.1 // indirect
github.com/klauspost/compress v1.13.6 // indirect
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
github.com/xdg-go/scram v1.1.2 // indirect
github.com/xdg-go/stringprep v1.0.4 // indirect
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/sys v0.21.0 // indirect
)