实现数据库节点管理

This commit is contained in:
刘祥超
2020-10-08 17:54:57 +08:00
parent 021f00c9bb
commit 1850786710
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()
})