diff --git a/src/main.rs b/src/main.rs index 7af674b..49b9edf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,7 +5,7 @@ use google_api_proto::google::cloud::speech::v1::{ StreamingRecognitionConfig, StreamingRecognizeRequest, }; use google_authz::{Credentials, GoogleAuthz}; -use log::{debug, info, warn}; +use log::{debug, info}; use tokio::io::AsyncReadExt; use tokio_stream::wrappers::UnboundedReceiverStream; use tonic::transport::Channel; @@ -21,9 +21,6 @@ async fn main() -> eyre::Result<()> { let channel = Channel::from_static("https://speech.googleapis.com") .connect() .await?; - // let channel_translate = Channel::from_static("https://translate.googleapis.com") - // .connect() - // .await?; let credentials = Credentials::builder() .json_file("i-centralvideo-dictate-dev-c184dd68967a.json".as_ref())