Skip to content

Commit 828adf3

Browse files
committed
feat: migrated repo (#1)
1 parent 5be7358 commit 828adf3

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## v0.1.0 (October 8, 2022)
1+
## v0.1.0 (December 8, 2022)
22

33
- Initial release after migrating from another repository.
44

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# go-middleware
1+
# gomw
22

3-
[![Go reference](https://pkg.go.dev/badge/github.com/christowolf/go-middleware.svg)](https://pkg.go.dev/github.com/christowolf/go-middleware)
4-
![Release](https://img.shields.io/github/v/release/ChristoWolf/go-middleware)
5-
![Build](https://img.shields.io/github/workflow/status/ChristoWolf/go-middleware/Go/main)
6-
![Coverage](https://img.shields.io/codecov/c/github/ChristoWolf/go-middleware)
7-
[![Go report card](https://goreportcard.com/badge/github.com/ChristoWolf/go-middleware)](https://goreportcard.com/report/github.com/ChristoWolf/go-middleware)
3+
[![Go reference](https://pkg.go.dev/badge/github.com/christowolf/gomw.svg)](https://pkg.go.dev/github.com/christowolf/gomw)
4+
![Release](https://img.shields.io/github/v/release/ChristoWolf/gomw)
5+
![Build](https://img.shields.io/github/workflow/status/ChristoWolf/gomw/Go/main)
6+
![Coverage](https://img.shields.io/codecov/c/github/ChristoWolf/gomw)
7+
[![Go report card](https://goreportcard.com/badge/github.com/ChristoWolf/gomw)](https://goreportcard.com/report/github.com/ChristoWolf/gomw)
88

99
A collection of simple Go middleware based on `net/http`.

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/christowolf/go-middleware
1+
module github.com/christowolf/gomw
22

33
go 1.19

logging/logging_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"testing"
1313
"time"
1414

15-
"github.com/christowolf/go-middleware/logging"
15+
"github.com/christowolf/gomw/logging"
1616
)
1717

1818
// TestMiddleware tests the logging middleware.

recovering/recovering_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
"testing"
1111

12-
"github.com/christowolf/go-middleware/recovering"
12+
"github.com/christowolf/gomw/recovering"
1313
)
1414

1515
// TestMiddleware tests the recovering middleware

0 commit comments

Comments
 (0)