Skip to content

Commit

Permalink
feat: remove go-kit/kit and gorilla/mux in favor of net/http's ServeMux
Browse files Browse the repository at this point in the history
utilize the improved routing found in go v1.22
  • Loading branch information
Jesse0Michael committed Feb 28, 2024
1 parent 8c9d0f1 commit 30da74d
Show file tree
Hide file tree
Showing 10 changed files with 329 additions and 1,465 deletions.
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21-alpine AS build
FROM golang:1.22-alpine AS build

# Copy project files
WORKDIR /go/src
Expand Down
9 changes: 3 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
module github.com/jesse0michael/go-rest-assured/v4

go 1.21
go 1.22

require (
github.com/go-kit/kit v0.10.0
github.com/google/uuid v1.3.1
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/stretchr/testify v1.8.4
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.1 // indirect
github.com/go-logfmt/logfmt v0.5.0 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
349 changes: 0 additions & 349 deletions go.sum

Large diffs are not rendered by default.

192 changes: 0 additions & 192 deletions pkg/assured/bindings.go

This file was deleted.

Loading

0 comments on commit 30da74d

Please sign in to comment.