Fixed nakedret

This commit is contained in:
Víctor Zamanillo 2020-09-25 18:43:13 +02:00
parent 9e8e88540f
commit e6496369d0

View File

@ -95,5 +95,6 @@ func ParseRequest(req string) (method, path string, headers map[string]string, b
return
}
body = string(b)
return
return method, path, headers, body, nil
}