2023-06-13 04:15:06 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fusenapi/server/shopping-cart-confirmation/internal/types"
|
2023-06-19 02:33:51 +00:00
|
|
|
|
2023-06-13 04:15:06 +00:00
|
|
|
"github.com/zeromicro/go-zero/rest"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
rest.RestConf
|
2023-06-19 02:33:51 +00:00
|
|
|
SourceMysql string
|
|
|
|
Auth types.Auth
|
2023-07-30 16:41:04 +00:00
|
|
|
ReplicaId uint64
|
2023-06-13 04:15:06 +00:00
|
|
|
}
|