diff --git a/backend/rust/kokoros/src/service.rs b/backend/rust/kokoros/src/service.rs index e1038f5e9..18e489266 100644 --- a/backend/rust/kokoros/src/service.rs +++ b/backend/rust/kokoros/src/service.rs @@ -372,6 +372,20 @@ impl Backend for KokorosService { Err(Status::unimplemented("Not supported")) } + async fn face_verify( + &self, + _: Request, + ) -> Result, Status> { + Err(Status::unimplemented("Not supported")) + } + + async fn face_analyze( + &self, + _: Request, + ) -> Result, Status> { + Err(Status::unimplemented("Not supported")) + } + async fn stores_set( &self, _: Request,