Submit_Over
app/controller.go
deleted
100644 → 0
app/controller/controller.go
0 → 100644
app/middleware.go
deleted
100644 → 0
app/middleware/middleware.go
0 → 100644
app/response.go
deleted
100644 → 0
app/response/response.go
0 → 100644
... | ... | @@ -3,6 +3,7 @@ module Pastebin |
go 1.19 | ||
require ( | ||
github.com/labstack/echo/v4 v4.9.1 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/spf13/viper v1.14.0 | ||
gorm.io/driver/mysql v1.4.4 | ||
... | ... | @@ -15,7 +16,10 @@ require ( |
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/labstack/gommon v0.4.0 // indirect | ||
github.com/magiconair/properties v1.8.6 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.5 // indirect | ||
... | ... | @@ -24,6 +28,10 @@ require ( |
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.4.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-20220525230936-793ad666bf5e // indirect | ||
golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect | ||
golang.org/x/sys v0.0.0-20220908164124-27713097b956 // indirect | ||
golang.org/x/text v0.4.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
... | ... |
Please register or sign in to comment