实现自动清理服务访问日志

This commit is contained in:
刘祥超
2021-01-19 12:05:26 +08:00
parent 724622f678
commit 7f66c65770
7 changed files with 127 additions and 0 deletions

View File

@@ -15,6 +15,8 @@ func init() {
Prefix("/settings/database").
Get("", new(IndexAction)).
GetPost("/update", new(UpdateAction)).
GetPost("/clean", new(CleanAction)).
GetPost("/cleanSetting", new(CleanSettingAction)).
EndAll()
})
}