-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
24 lines (22 loc) · 899 Bytes
/
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
module github.com/ybkuroki/go-webapp-project-template
go 1.14
require (
github.com/garyburd/redigo v1.6.2 // indirect
github.com/gorilla/sessions v1.2.0
github.com/jinzhu/configor v1.2.0
github.com/jinzhu/gorm v1.9.12
github.com/labstack/echo-contrib v0.9.0
github.com/labstack/echo/v4 v4.1.16
github.com/labstack/gommon v0.3.0
github.com/lib/pq v1.7.0 // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
github.com/stretchr/testify v1.6.1
github.com/valyala/fasttemplate v1.1.1 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
golang.org/x/net v0.0.0-20200625001655-4c5254603344 // indirect
golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae // indirect
golang.org/x/text v0.3.3 // indirect
gopkg.in/boj/redistore.v1 v1.0.0-20160128113310-fc113767cd6b
gopkg.in/yaml.v2 v2.2.8 // indirect
)