OperationLogStatus update status of operation if necessary
()
| 25 | |
| 26 | // OperationLogStatus update status of operation if necessary |
| 27 | func OperationLogStatus() gin.HandlerFunc { |
| 28 | return func(c *gin.Context) { |
| 29 | defer UpdateOperationLogStatus(c) |
| 30 | c.Next() |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | // 更新操作日志状态 |
| 35 | func UpdateOperationLogStatus(c *gin.Context) { |
nothing calls this directly
no test coverage detected