initialize handler and other parts
app/controller/handler.go
0 → 100644
app/controller/model.go
0 → 100644
app/midware/init.go
0 → 100644
app/response/response.go
0 → 100644
... | ... | @@ -4,10 +4,10 @@ go 1.17 |
require ( | ||
github.com/go-playground/validator/v10 v10.10.0 | ||
github.com/labstack/echo/v4 v4.6.3 | ||
github.com/labstack/echo/v4 v4.9.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/viper v1.10.1 | ||
github.com/swaggo/echo-swagger v1.2.0 | ||
github.com/swaggo/echo-swagger v1.3.5 | ||
gorm.io/driver/mysql v1.2.3 | ||
gorm.io/gorm v1.22.5 | ||
) | ||
... | ... | @@ -16,6 +16,7 @@ require ( |
github.com/KyleBanks/depth v1.2.1 // indirect | ||
github.com/PuerkitoBio/purell v1.1.1 // indirect | ||
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.19.6 // indirect | ||
... | ... | @@ -41,15 +42,15 @@ require ( |
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
github.com/swaggo/files v0.0.0-20210815190702-a29dd2bc99b2 // indirect | ||
github.com/swaggo/swag v1.7.6 // indirect | ||
github.com/swaggo/files v0.0.0-20220728132757-551d4a08d97a // indirect | ||
github.com/swaggo/swag v1.8.1 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.1 // indirect | ||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect | ||
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f // indirect | ||
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect | ||
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect | ||
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect | ||
golang.org/x/sys v0.0.0-20220422013727-9388b58f7150 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/tools v0.1.8 // indirect | ||
golang.org/x/tools v0.1.10 // indirect | ||
gopkg.in/ini.v1 v1.66.2 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
model/fo.go
0 → 100644
utils/short.go
0 → 100644
utils/token.go
0 → 100644
Please register or sign in to comment