2023-07-21 07:20:18 +00:00
|
|
|
package config
|
|
|
|
|
2023-07-24 02:27:06 +00:00
|
|
|
import (
|
|
|
|
"fusenapi/server/render/internal/types"
|
|
|
|
"github.com/zeromicro/go-zero/rest"
|
|
|
|
)
|
2023-07-21 07:20:18 +00:00
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
rest.RestConf
|
2023-08-07 03:44:54 +00:00
|
|
|
SourceMysql string
|
|
|
|
Auth types.Auth
|
|
|
|
SourceRabbitMq string
|
2023-07-21 07:20:18 +00:00
|
|
|
}
|