You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
356 B
Go
17 lines
356 B
Go
package config
|
|
|
|
import (
|
|
config2 "git.noahlan.cn/noahlan/ntool-biz/core/config"
|
|
"git.noahlan.cn/noahlan/ntool-biz/core/i18n"
|
|
"git.noahlan.cn/noahlan/ntool-biz/core/orm/nent/config"
|
|
"github.com/zeromicro/go-zero/zrpc"
|
|
)
|
|
|
|
type Config struct {
|
|
zrpc.RpcServerConf
|
|
|
|
DatabaseConf config.Database
|
|
RedisConf config2.RedisConf
|
|
I18nConf i18n.Config
|
|
}
|