mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-21 17:29:17 +08:00
40 lines
811 B
Go
40 lines
811 B
Go
export enum ResultEnum {
|
||
SUCCESS = 200,
|
||
ERROR = 500,
|
||
OVERDUE = 401,
|
||
UNSAFETY = 402,
|
||
FORBIDDEN = 403,
|
||
EXPIRED = 405,
|
||
ERRAUTH = 406,
|
||
ERRGLOBALLOADDING = 407,
|
||
ERRIP = 408,
|
||
ERRDOMAIN = 409,
|
||
TIMEOUT = 20000,
|
||
TYPE = 'success',
|
||
}
|
||
|
||
/**
|
||
* @description:请求方法
|
||
*/
|
||
export enum RequestEnum {
|
||
GET = 'GET',
|
||
POST = 'POST',
|
||
PATCH = 'PATCH',
|
||
PUT = 'PUT',
|
||
DELETE = 'DELETE',
|
||
}
|
||
|
||
/**
|
||
* @description:常用的contentTyp类型
|
||
*/
|
||
export enum ContentTypeEnum {
|
||
// json
|
||
JSON = 'application/json;charset=UTF-8',
|
||
// text
|
||
TEXT = 'text/plain;charset=UTF-8',
|
||
// form-data 一般配合qs
|
||
FORM_URLENCODED = 'application/x-www-form-urlencoded;charset=UTF-8',
|
||
// form-data 上传
|
||
FORM_DATA = 'multipart/form-data;charset=UTF-8',
|
||
}
|