14 lines
344 B
Go
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"`
|
|
}
|