[日志审计]增加删除、清理和别的一些设置

This commit is contained in:
刘祥超
2020-12-02 20:31:42 +08:00
parent 86fef9153a
commit 81681f415d
28 changed files with 485 additions and 78 deletions

View File

@@ -13,6 +13,9 @@ func init() {
Prefix("/log").
Get("", new(IndexAction)).
Get("/exportExcel", new(ExportExcelAction)).
Post("/delete", new(DeleteAction)).
GetPost("/clean", new(CleanAction)).
GetPost("/settings", new(SettingsAction)).
EndAll()
})