Files
ocean/gallery/internal/config/config.go
konjacpotato b1934579c0
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 33s
commit code
2025-06-04 20:43:15 +08:00

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
}