**changelog**
- Test code refactored;
- Import modules back to absolute path format. For example:
> **old style**
python
from config import ConfigClient
> **new style**
python
from config.spring import ConfigClient
For more details check the docs: [https://config-client.amenezes.net](https://config-client.amenezes.net)
- [PR-29 - Add get config timeout](https://github.com/amenezes/config-client/pull/29) merged.
- contribution of luiscoms :clap:
Now it's possible pass requests `**kwargs` to `get_config` method. For example:
python
myclient.get_config(timeout=1.0, headers={"Accept": "*/*"})