Skip to content

Commit 77da8df

Browse files
committed
Make gofumpt happy
1 parent 8f1a048 commit 77da8df

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

context.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ import (
77
"go.uber.org/zap"
88
)
99

10-
type requestIDCtxKey struct{}
11-
type sentryHubCtxKey struct{}
12-
type zapLoggerCtxKey struct{}
10+
type (
11+
requestIDCtxKey struct{}
12+
sentryHubCtxKey struct{}
13+
zapLoggerCtxKey struct{}
14+
)
1315

1416
func RequestID(ctx context.Context) string {
1517
if id, ok := ctx.Value(requestIDCtxKey{}).(string); ok {

0 commit comments

Comments
 (0)