-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove go-kit/kit and gorilla/mux in favor of net/http's ServeMux
utilize the improved routing found in go v1.22
- Loading branch information
1 parent
8c9d0f1
commit 30da74d
Showing
10 changed files
with
329 additions
and
1,465 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.