aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorJulien Dessaux2021-04-13 22:53:29 +0200
committerJulien Dessaux2021-04-13 22:57:10 +0200
commit2d75d2cb7443a2c398dc317ae6335153b4c05f03 (patch)
tree787bf916964e47635c4051472e20f59b24b468f1 /go.mod
parentRenamed password column to hash in database (diff)
downloadtrains-2d75d2cb7443a2c398dc317ae6335153b4c05f03.tar.gz
trains-2d75d2cb7443a2c398dc317ae6335153b4c05f03.tar.bz2
trains-2d75d2cb7443a2c398dc317ae6335153b4c05f03.zip
Added a session table and a CreateSession function
Diffstat (limited to '')
-rw-r--r--go.mod3
1 files changed, 2 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 408cb0c..7d05ed5 100644
--- a/go.mod
+++ b/go.mod
@@ -5,10 +5,11 @@ go 1.16
require (
github.com/DATA-DOG/go-sqlmock v1.5.0
github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/google/uuid v1.2.0 // indirect
github.com/kr/pretty v0.2.1 // indirect
github.com/mattn/go-sqlite3 v1.14.6
github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect
+ golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
)