fix auth backend in dockerfile

This commit is contained in:
Maple Nebel 2025-11-07 18:06:22 +00:00
commit a64699442e
2 changed files with 4 additions and 4 deletions

View file

@ -4,5 +4,5 @@
//! This WILL be deprecated as soon as account rs is in a stable state.
use tonic::{Request, Status};
type InterceptorFunc = Box<(dyn Fn(Request<()>) -> Result<Request<()>, Status> + Send)>;
type InterceptorFunc = Box<dyn Fn(Request<()>) -> Result<Request<()>, Status> + Send>;
pub mod account;