This commit is contained in:
Shreyas Goenka 2025-02-03 12:17:25 +01:00
parent a8b366ee79
commit 5c2205a6f7
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
1 changed files with 3 additions and 3 deletions

View File

@ -23,9 +23,9 @@ type Server struct {
}
type Request struct {
Method string `json:"method"`
Path string `json:"path"`
Body json.RawMessage `json:"body"`
Method string `json:"method"`
Path string `json:"path"`
Body any `json:"body"`
}
func New(t testutil.TestingT) *Server {