增加删除API节点功能

This commit is contained in:
刘祥超
2020-10-10 20:41:33 +08:00
parent 0f571cad57
commit 3f793125ab
5 changed files with 39 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ func init() {
Prefix("/api").
Get("", new(IndexAction)).
GetPost("/node/createPopup", new(node.CreatePopupAction)).
Post("/delete", new(DeleteAction)).
EndAll()
})
}