Is it a good idea to add constants for content type of HTTP body like http.MethodPost in HTTP methods? It might be ```go const ( ContentTypeFormURLEncoded = "application/x-www-form-urlencoded" ) ``` This changes will help us not typo, and get support from editors.