forked from cloud-barista/cb-webtool
-
Notifications
You must be signed in to change notification settings - Fork 7
/
go.mod
30 lines (27 loc) · 1.02 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module github.com/cloud-barista/cb-webtool
go 1.19
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/foolin/echo-template v0.0.0-20190415034849-543a88245eec
github.com/go-session/echo-session v3.0.0+incompatible
github.com/go-session/session v3.1.2+incompatible // indirect
github.com/golang-jwt/jwt/v4 v4.0.0
github.com/google/uuid v1.3.0
github.com/gorilla/websocket v1.4.2
github.com/labstack/echo v3.3.10+incompatible
golang.org/x/crypto v0.1.0
)
require (
// github.com/labstack/echo/v4 v4.5.0
github.com/labstack/gommon v0.3.0 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/stretchr/testify v1.7.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
)