fusenapi/server/data-transfer/internal/config/config.go
laodaming 2a18f0c21a fix
2023-06-09 12:07:54 +08:00

13 lines
201 B
Go

package config
import (
types "fusenapi/server/data-transfer/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
}