From 1adf9d37b7d0ecd4b43c0ac64ae0bc577ff880d0 Mon Sep 17 00:00:00 2001 From: Walter Schulze Date: Thu, 3 Oct 2024 08:38:18 -0700 Subject: [PATCH] move _protocol.go to _format.go Summary: move _protocol.go to _format.go Reviewed By: leoleovich Differential Revision: D63833723 fbshipit-source-id: 65684ab624b5b3a5e4e13b7af55cb5f697b3c0f2 --- thrift/lib/go/thrift/{binary_protocol.go => binary_format.go} | 0 .../go/thrift/{binary_protocol_test.go => binary_format_test.go} | 0 thrift/lib/go/thrift/{compact_protocol.go => compact_format.go} | 0 .../thrift/{compact_protocol_test.go => compact_format_test.go} | 0 thrift/lib/go/thrift/{json_protocol.go => json_format.go} | 0 .../lib/go/thrift/{json_protocol_test.go => json_format_test.go} | 0 .../go/thrift/{simple_json_protocol.go => simple_json_format.go} | 0 .../{simple_json_protocol_test.go => simple_json_format_test.go} | 0 8 files changed, 0 insertions(+), 0 deletions(-) rename thrift/lib/go/thrift/{binary_protocol.go => binary_format.go} (100%) rename thrift/lib/go/thrift/{binary_protocol_test.go => binary_format_test.go} (100%) rename thrift/lib/go/thrift/{compact_protocol.go => compact_format.go} (100%) rename thrift/lib/go/thrift/{compact_protocol_test.go => compact_format_test.go} (100%) rename thrift/lib/go/thrift/{json_protocol.go => json_format.go} (100%) rename thrift/lib/go/thrift/{json_protocol_test.go => json_format_test.go} (100%) rename thrift/lib/go/thrift/{simple_json_protocol.go => simple_json_format.go} (100%) rename thrift/lib/go/thrift/{simple_json_protocol_test.go => simple_json_format_test.go} (100%) diff --git a/thrift/lib/go/thrift/binary_protocol.go b/thrift/lib/go/thrift/binary_format.go similarity index 100% rename from thrift/lib/go/thrift/binary_protocol.go rename to thrift/lib/go/thrift/binary_format.go diff --git a/thrift/lib/go/thrift/binary_protocol_test.go b/thrift/lib/go/thrift/binary_format_test.go similarity index 100% rename from thrift/lib/go/thrift/binary_protocol_test.go rename to thrift/lib/go/thrift/binary_format_test.go diff --git a/thrift/lib/go/thrift/compact_protocol.go b/thrift/lib/go/thrift/compact_format.go similarity index 100% rename from thrift/lib/go/thrift/compact_protocol.go rename to thrift/lib/go/thrift/compact_format.go diff --git a/thrift/lib/go/thrift/compact_protocol_test.go b/thrift/lib/go/thrift/compact_format_test.go similarity index 100% rename from thrift/lib/go/thrift/compact_protocol_test.go rename to thrift/lib/go/thrift/compact_format_test.go diff --git a/thrift/lib/go/thrift/json_protocol.go b/thrift/lib/go/thrift/json_format.go similarity index 100% rename from thrift/lib/go/thrift/json_protocol.go rename to thrift/lib/go/thrift/json_format.go diff --git a/thrift/lib/go/thrift/json_protocol_test.go b/thrift/lib/go/thrift/json_format_test.go similarity index 100% rename from thrift/lib/go/thrift/json_protocol_test.go rename to thrift/lib/go/thrift/json_format_test.go diff --git a/thrift/lib/go/thrift/simple_json_protocol.go b/thrift/lib/go/thrift/simple_json_format.go similarity index 100% rename from thrift/lib/go/thrift/simple_json_protocol.go rename to thrift/lib/go/thrift/simple_json_format.go diff --git a/thrift/lib/go/thrift/simple_json_protocol_test.go b/thrift/lib/go/thrift/simple_json_format_test.go similarity index 100% rename from thrift/lib/go/thrift/simple_json_protocol_test.go rename to thrift/lib/go/thrift/simple_json_format_test.go