(username, filePath string)
| 61 | } |
| 62 | |
| 63 | func createWriteFileLog(username, filePath string) { |
| 64 | logs.CreateLog(types.AuditLog{ |
| 65 | Username: username, |
| 66 | Action: "Write file", |
| 67 | Description: fmt.Sprintf("%s wrote the %s file.", username, filePath), |
| 68 | }) |
| 69 | } |
no test coverage detected