Implement produce service

This commit is contained in:
2021-06-20 18:16:33 -04:00
parent c7cbd7df57
commit 0136e616fb
14 changed files with 537 additions and 37 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ func TestRecord_NewRecord(t *testing.T) {
key string
keyColumn string
data interface{}
expectedRecord *record
expectedRecord *Record
expectedError string
}{
{
@@ -29,7 +29,7 @@ func TestRecord_NewRecord(t *testing.T) {
key: "test-record",
keyColumn: "test-column",
data: struct{}{},
expectedRecord: &record{
expectedRecord: &Record{
serialized: []byte("{}"),
key: "test-record",
keyColumn: "test-column",