All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 33s
17 lines
302 B
Go
17 lines
302 B
Go
package config
|
|
|
|
import "github.com/zeromicro/go-zero/zrpc"
|
|
|
|
type Config struct {
|
|
zrpc.RpcServerConf
|
|
FileRpc zrpc.RpcClientConf
|
|
CategoryRpc zrpc.RpcClientConf
|
|
DB struct {
|
|
DataSource string
|
|
MaxOpenConns int
|
|
MaxIdleConns int
|
|
ConnMaxLifetime int
|
|
}
|
|
BucketName string
|
|
}
|