Keep adding irrelevant stuff
Some checks failed
ci/woodpecker/push/pre_commit_test Pipeline failed
ci/woodpecker/push/code_tests Pipeline failed

This commit is contained in:
2025-11-30 16:55:27 +01:00
parent 8a6227d382
commit 61c5799ffc

View File

@@ -17,10 +17,12 @@ pub struct TermixAudioBackend {}
#[tonic::async_trait]
impl AudioBackend for TermixAudioBackend {
async fn start_client(&self,request:tonic::Request<()>,) -> std::result::Result<tonic::Response<()>,tonic::Status> {
info!("starting the audio backend client");
todo!()
}
async fn init_connection(&self,request:tonic::Request<()>,) -> std::result::Result<tonic::Response<()>,tonic::Status> {
info!("initializing the connection to the audio backend");
todo!()
}
}
@@ -29,7 +31,7 @@ impl AudioBackend for TermixAudioBackend {
async fn main() -> Result<(), Box<dyn std::error::Error>> {
env_logger::init();
let args = Args::parse();
info!("starting the grpc server on port {:?}", args.grpc_port);
info!("starting the grpc server on port {}", args.grpc_port);
let addr = "[::1]:50051".parse()?;
let greeter = TermixAudioBackend::default();