实现数据库节点管理

This commit is contained in:
GoEdgeLab
2020-10-08 17:54:57 +08:00
parent ab4452b37f
commit 1b47a0173c
14 changed files with 440 additions and 4 deletions

View File

@@ -12,6 +12,9 @@ func init() {
Helper(new(Helper)).
Prefix("/db").
Get("", new(IndexAction)).
GetPost("/createPopup", new(CreatePopupAction)).
GetPost("/updatePopup", new(UpdatePopupAction)).
Post("/delete", new(DeleteAction)).
EndAll()
})