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

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