2022-03-29 03:37:40 +00:00
|
|
|
/*
|
|
|
|
* @FileName: utils.go
|
2022-12-09 13:43:15 +00:00
|
|
|
* @Author: JJXu
|
2022-03-29 03:37:40 +00:00
|
|
|
* @CreateTime: 2022/3/29 上午11:16
|
|
|
|
* @Description:
|
|
|
|
*/
|
|
|
|
|
|
|
|
package simpleRequest
|
|
|
|
|
|
|
|
func IsJSONType(ct string) bool {
|
|
|
|
return jsonCheck.MatchString(ct)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsXMLType method is to check XML content type or not
|
|
|
|
func IsXMLType(ct string) bool {
|
|
|
|
return xmlCheck.MatchString(ct)
|
|
|
|
}
|