add topic console

This commit is contained in:
许晓东
2021-09-09 11:36:43 +08:00
parent fad17302c8
commit f4413107d7
9 changed files with 255 additions and 17 deletions

View File

@@ -47,8 +47,18 @@ export const KafkaAclApi = {
url: "/acl",
method: "delete",
},
};
export const KafkaConfigApi = {
getConfig: {
url: "/config",
method: "get",
},
};
export const KafkaTopicApi = {
getTopicList: {
url: "/topic/list",
method: "get",
},
};