-
Notifications
You must be signed in to change notification settings - Fork 5
/
go.mod
36 lines (34 loc) · 1.24 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
31
32
33
34
35
36
module github.com/cntechpower/anywhere
go 1.14
require (
github.com/cntechpower/utils v0.0.0-20210804143408-41d01c6ff35a
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gin-contrib/cors v1.3.1
github.com/gin-contrib/sessions v0.0.3
github.com/gin-gonic/contrib v0.0.0-20201101042839-6a891bf89f19
github.com/gin-gonic/gin v1.6.3
github.com/go-openapi/errors v0.19.4
github.com/go-openapi/loads v0.19.5
github.com/go-openapi/runtime v0.19.12
github.com/go-openapi/spec v0.19.7
github.com/go-openapi/strfmt v0.19.5
github.com/go-openapi/swag v0.19.8
github.com/go-openapi/validate v0.19.8
github.com/go-sql-driver/mysql v1.5.0
github.com/gorilla/sessions v1.2.0 // indirect
github.com/jessevdk/go-flags v1.4.0
github.com/mattn/go-runewidth v0.0.4 // indirect
github.com/mattn/go-sqlite3 v1.14.7 // indirect
github.com/olekukonko/tablewriter v0.0.1
github.com/opentracing/opentracing-go v1.2.0
github.com/pquerna/otp v1.2.0
github.com/rs/cors v1.7.0
github.com/spf13/cobra v0.0.6
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.7.0
golang.org/x/net v0.0.0-20200625001655-4c5254603344
google.golang.org/grpc v1.34.0
google.golang.org/protobuf v1.25.0
gorm.io/driver/sqlite v1.1.4
gorm.io/gorm v1.21.11
)