We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GET /services/{service_name}/configures 获取某个service_name 服务下所有配置信息
{ "status": "success", "count": 1, "data": [ { "data": { "aaa": 1111, "bb": 22 }, "name": "dev" } ] }
这个API返回了每个configure的data和name. 其实感觉只要一个name的list就行了. 具体是啥可以用另一个api去具体看
The text was updated successfully, but these errors were encountered:
No branches or pull requests
GET /services/{service_name}/configures
获取某个service_name 服务下所有配置信息
{
"status": "success",
"count": 1,
"data": [
{
"data": {
"aaa": 1111,
"bb": 22
},
"name": "dev"
}
]
}
这个API返回了每个configure的data和name. 其实感觉只要一个name的list就行了.
具体是啥可以用另一个api去具体看
The text was updated successfully, but these errors were encountered: