Skip to content

Commit a2daba0

Browse files
committed
renamed to com.examples.cloud.speech
1 parent e84a63f commit a2daba0

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

speech/grpc/bin/speech-sample-async.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515

1616
SRC_DIR=$(cd "$(dirname "$0")/.."; pwd)
1717
java -cp ${SRC_DIR}/target/grpc-sample-1.0-jar-with-dependencies.jar \
18-
com.google.cloud.speech.grpc.demos.AsyncRecognizeClient "$@"
18+
com.examples.cloud.speech.AsyncRecognizeClient "$@"

speech/grpc/bin/speech-sample-streaming.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515

1616
SRC_DIR=$(cd "$(dirname "$0")/.."; pwd)
1717
java -cp ${SRC_DIR}/target/grpc-sample-1.0-jar-with-dependencies.jar \
18-
com.google.cloud.speech.grpc.demos.StreamingRecognizeClient "$@"
18+
com.examples.cloud.speech.StreamingRecognizeClient "$@"

speech/grpc/bin/speech-sample-sync.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515

1616
SRC_DIR=$(cd "$(dirname "$0")/.."; pwd)
1717
java -cp ${SRC_DIR}/target/grpc-sample-1.0-jar-with-dependencies.jar \
18-
com.google.cloud.speech.grpc.demos.SyncRecognizeClient "$@"
18+
com.examples.cloud.speech.SyncRecognizeClient "$@"

speech/grpc/src/main/java/com/examples/cloud/speech/AsyncRecognizeClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.google.cloud.speech.grpc.demos;
17+
package com.examples.cloud.speech;
1818

1919
import com.google.auth.oauth2.GoogleCredentials;
2020
import com.google.cloud.speech.v1beta1.AsyncRecognizeRequest;

speech/grpc/src/main/java/com/examples/cloud/speech/RecognitionAudioFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.google.cloud.speech.grpc.demos;
17+
package com.google.cloud.speech;
1818

1919
import com.google.cloud.speech.v1beta1.RecognitionAudio;
2020
import com.google.protobuf.ByteString;

speech/grpc/src/main/java/com/examples/cloud/speech/StreamingRecognizeClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.google.cloud.speech.grpc.demos;
17+
package com.google.cloud.speech;
1818

1919
import com.google.auth.oauth2.GoogleCredentials;
2020
import com.google.cloud.speech.v1beta1.RecognitionConfig;

speech/grpc/src/main/java/com/examples/cloud/speech/SyncRecognizeClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.google.cloud.speech.grpc.demos;
17+
package com.google.cloud.speech;
1818

1919
import com.google.auth.oauth2.GoogleCredentials;
2020
import com.google.cloud.speech.v1beta1.RecognitionAudio;

0 commit comments

Comments
 (0)