2023-08-14 09:56:06 +00:00
|
|
|
package constants
|
|
|
|
|
|
|
|
const (
|
2023-08-23 03:09:14 +00:00
|
|
|
BLMServiceUrlLogoCombine string = "/LogoCombine"
|
|
|
|
BLMServiceUrlLogoRemovebg string = "/removebg"
|
|
|
|
BLMServiceUrlLogoFeatureExtraction string = "/FeatureExtraction"
|
2023-08-14 09:56:06 +00:00
|
|
|
)
|
2023-08-23 03:09:14 +00:00
|
|
|
|
|
|
|
type BLMServiceUrlResult struct {
|
|
|
|
Code string `json:"code"`
|
|
|
|
Msg string `json:"msg"`
|
|
|
|
Data interface{} `json:"data"`
|
|
|
|
}
|