Skip to content
This repository was archived by the owner on Jul 31, 2024. It is now read-only.

Commit d9774df

Browse files
feat: implement http middleware chainer (#2)
* chore: cleanup repository * feat: implement http middleware chainer
1 parent a3794ae commit d9774df

File tree

5 files changed

+13
-530
lines changed

5 files changed

+13
-530
lines changed

.env.sample

Whitespace-only changes.

go.mod

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,13 @@ module github.com/Pranc1ngPegasus/golang-template
33
go 1.19
44

55
require (
6-
github.com/golang/mock v1.6.0
7-
github.com/google/wire v0.5.0
8-
github.com/samber/lo v1.33.0
9-
github.com/spf13/viper v1.13.0
10-
go.uber.org/zap v1.23.0
116
golang.org/x/tools v0.2.0
127
mvdan.cc/gofumpt v0.4.0
138
)
149

1510
require (
16-
github.com/fsnotify/fsnotify v1.5.4 // indirect
1711
github.com/google/go-cmp v0.5.8 // indirect
18-
github.com/google/subcommands v1.0.1 // indirect
19-
github.com/hashicorp/hcl v1.0.0 // indirect
20-
github.com/magiconair/properties v1.8.6 // indirect
21-
github.com/mitchellh/mapstructure v1.5.0 // indirect
22-
github.com/pelletier/go-toml v1.9.5 // indirect
23-
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
24-
github.com/pmezard/go-difflib v1.0.0 // indirect
25-
github.com/spf13/afero v1.8.2 // indirect
26-
github.com/spf13/cast v1.5.0 // indirect
27-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
28-
github.com/spf13/pflag v1.0.5 // indirect
29-
github.com/subosito/gotenv v1.4.1 // indirect
30-
go.uber.org/atomic v1.7.0 // indirect
31-
go.uber.org/multierr v1.6.0 // indirect
32-
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
3312
golang.org/x/mod v0.6.0 // indirect
3413
golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde // indirect
3514
golang.org/x/sys v0.1.0 // indirect
36-
golang.org/x/text v0.4.0 // indirect
37-
gopkg.in/ini.v1 v1.67.0 // indirect
38-
gopkg.in/yaml.v2 v2.4.0 // indirect
39-
gopkg.in/yaml.v3 v3.0.1 // indirect
4015
)

0 commit comments

Comments
 (0)