File tree Expand file tree Collapse file tree 5 files changed +10
-12
lines changed
Expand file tree Collapse file tree 5 files changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ require (
88)
99
1010require (
11- github.com/google/jsonschema-go v0.2.1 // indirect
11+ github.com/google/jsonschema-go v0.2.3 // indirect
1212 github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
1313)
1414
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ github.com/golang-jwt/jwt/v5 v5.2.2 h1:Rl4B7itRWVtYIHFrSNd7vhTiz9UpLdi6gZhZ3wEeD
22github.com/golang-jwt/jwt/v5 v5.2.2 /go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk =
33github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8 =
44github.com/google/go-cmp v0.7.0 /go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU =
5- github.com/google/jsonschema-go v0.2.1 h1:Z3iINWAUmvS4+m9cMP5lWbn6WlX8Hy4rpUS4pULVliQ =
6- github.com/google/jsonschema-go v0.2.1 /go.mod h1:r5quNTdLOYEz95Ru18zA0ydNbBuYoo9tgaYcxEYhJVE =
5+ github.com/google/jsonschema-go v0.2.3 h1:dkP3B96OtZKKFvdrUSaDkL+YDx8Uw9uC4Y+eukpCnmM =
6+ github.com/google/jsonschema-go v0.2.3 /go.mod h1:r5quNTdLOYEz95Ru18zA0ydNbBuYoo9tgaYcxEYhJVE =
77github.com/yosida95/uritemplate/v3 v3.0.2 h1:Ed3Oyj9yrmi9087+NczuL5BwkIc4wvTb5zIM+UJPGz4 =
88github.com/yosida95/uritemplate/v3 v3.0.2 /go.mod h1:ILOh0sOhIJR3+L/8afwt/kE++YT040gmv5BQTMR2HP4 =
99golang.org/x/tools v0.34.0 h1:qIpSLOxeCYGg9TrcJokLBG4KFA6d795g0xkBkiESGlo =
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ require (
88)
99
1010require (
11- github.com/google/jsonschema-go v0.2.1 // indirect
11+ github.com/google/jsonschema-go v0.2.3 // indirect
1212 github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
1313)
1414
Original file line number Diff line number Diff line change 11github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8 =
22github.com/google/go-cmp v0.7.0 /go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU =
3- github.com/google/jsonschema-go v0.2.1 h1:Z3iINWAUmvS4+m9cMP5lWbn6WlX8Hy4rpUS4pULVliQ =
4- github.com/google/jsonschema-go v0.2.1 /go.mod h1:r5quNTdLOYEz95Ru18zA0ydNbBuYoo9tgaYcxEYhJVE =
3+ github.com/google/jsonschema-go v0.2.3 h1:dkP3B96OtZKKFvdrUSaDkL+YDx8Uw9uC4Y+eukpCnmM =
4+ github.com/google/jsonschema-go v0.2.3 /go.mod h1:r5quNTdLOYEz95Ru18zA0ydNbBuYoo9tgaYcxEYhJVE =
55github.com/yosida95/uritemplate/v3 v3.0.2 h1:Ed3Oyj9yrmi9087+NczuL5BwkIc4wvTb5zIM+UJPGz4 =
66github.com/yosida95/uritemplate/v3 v3.0.2 /go.mod h1:ILOh0sOhIJR3+L/8afwt/kE++YT040gmv5BQTMR2HP4 =
77golang.org/x/time v0.12.0 h1:ScB/8o8olJvc+CQPWrK3fPZNfh7qgwCrY0zJmoEQLSE =
Original file line number Diff line number Diff line change 1+ // Copyright 2025 The Go MCP SDK Authors. All rights reserved.
2+ // Use of this source code is governed by an MIT-style
3+ // license that can be found in the LICENSE file.
4+
15package testing
26
37import (
@@ -24,12 +28,6 @@ type authCodeInfo struct {
2428 redirectURI string
2529}
2630
27- // // FakeAuthServer is a fake OAuth2 authorization server.
28- // type FakeAuthServer struct {
29- // server *http.Server
30- // authCodes map[string]authCodeInfo
31- // }
32-
3331type state struct {
3432 authCodes map [string ]authCodeInfo
3533}
You can’t perform that action at this time.
0 commit comments