🐛 fixed the issue that third-party login sessions were missing
This commit is contained in:
19
app/core/api/common/http/vars.go
Normal file
19
app/core/api/common/http/vars.go
Normal file
@@ -0,0 +1,19 @@
|
||||
package http
|
||||
|
||||
const (
|
||||
xmlVersion = "1.0"
|
||||
xmlEncoding = "UTF-8"
|
||||
|
||||
// BusinessCodeOK represents the business code for success.
|
||||
BusinessCodeOK = 0
|
||||
// BusinessMsgOk represents the business message for success.
|
||||
BusinessMsgOk = "ok"
|
||||
|
||||
// BusinessCodeError represents the business code for error.
|
||||
BusinessCodeError = -1
|
||||
|
||||
// XmlContentType represents the content type for xml.
|
||||
XmlContentType = "application/xml"
|
||||
// HTMLContentType represents the content type for html.
|
||||
HTMLContentType = "text/html;charset=utf-8"
|
||||
)
|
Reference in New Issue
Block a user