增加购物车服务

This commit is contained in:
laodaming
2023-09-13 17:33:58 +08:00
parent a8b85fad02
commit b8edd41e69
14 changed files with 573 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package config
import (
"fusenapi/server/shopping-cart/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
SourceRabbitMq string
}