fusenapi/constants/blm_service.go
2023-08-23 11:09:14 +08:00

14 lines
344 B
Go

package constants
const (
BLMServiceUrlLogoCombine string = "/LogoCombine"
BLMServiceUrlLogoRemovebg string = "/removebg"
BLMServiceUrlLogoFeatureExtraction string = "/FeatureExtraction"
)
type BLMServiceUrlResult struct {
Code string `json:"code"`
Msg string `json:"msg"`
Data interface{} `json:"data"`
}