(r RequestRow)
| 91 | func (m *memoryStore) Close() error { return nil } |
| 92 | |
| 93 | func cloneRequestRow(r RequestRow) RequestRow { |
| 94 | r.InputJSON = append([]byte(nil), r.InputJSON...) |
| 95 | r.ContextJSON = append([]byte(nil), r.ContextJSON...) |
| 96 | r.AIRequestJSON = append([]byte(nil), r.AIRequestJSON...) |
| 97 | r.PolicySnapshot = append([]byte(nil), r.PolicySnapshot...) |
| 98 | return r |
| 99 | } |