int64Param is a parameter that writes a int64 value to the JSON writer.
| 71 | |
| 72 | // int64Param is a parameter that writes a int64 value to the JSON writer. |
| 73 | type int64Param struct { |
| 74 | Key string |
| 75 | Value int64 |
| 76 | } |
| 77 | |
| 78 | func (v int64Param) WriteValueTo(jw *contentlog.JSONWriter) { |
| 79 | jw.Int64Field(v.Key, v.Value) |
nothing calls this directly
no outgoing calls
no test coverage detected