ego icon indicating copy to clipboard operation
ego copied to clipboard

A simple and component-based microservice kit for go. 一个简单的基于组件的 Go 微服务套件。

Results 6 ego issues
Sort by recently updated
recently updated
newest added

Welcome to use ego To know who is using it, pls append your org info as follow, Organization:ego (Required) Location: Shanghai, China(Required) Contact: Email or Official website (Optional) Purpose:use as...

**Is your feature request related to a problem? Please describe.** 在接入ego过程中,遇到2类场景, 在接入过程里,比较容易出错。 1. 多配置文件,并且都比较大,多配置文件合一的过程,容易出错,不利于执行,且可读性不好。期望对问题1,支持多配置文件。 2. 部分项目配置文件的格式不标准,在接入ego过程中,想用到component,但是component的配置,由旧配置文件读好了,在内存中。期望问题2,对主流component(eredis,egorm,egin),支持egin.LoadFromKV(map[string]interface{}),来做到指定配置值赋予。 **Describe the solution you'd like** 对问题1的期望解决方式: 对econf支持载入多数据源,并且允许不同文件的key重复。 预期样式: ```go var redisfilepath = "/xxx/xx/redis.yaml" var...

提升测试用例覆盖率

需提升测试用例覆盖率

1. Why not use viper lib to load config data source? Viper support load config from file / env /config center, watch change too 2. Support multi data source? 3....