fusenapi/server/render/internal/config/config.go

15 lines
209 B
Go
Raw Normal View History

package config
2023-07-24 02:27:06 +00:00
import (
"fusenapi/server/render/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
2023-07-30 16:41:04 +00:00
ReplicaId uint64
}