2025-03-23 10:54:01 +01:00
|
|
|
//! Legacy grpc communication server for being able to use this with pretendos infrastructure
|
|
|
|
|
//! before account rs is finished.
|
|
|
|
|
//!
|
|
|
|
|
//! This WILL be deprecated as soon as account rs is in a stable state.
|
2025-02-02 00:46:04 +01:00
|
|
|
use tonic::{Request, Status};
|
|
|
|
|
|
2025-11-07 18:06:22 +00:00
|
|
|
type InterceptorFunc = Box<dyn Fn(Request<()>) -> Result<Request<()>, Status> + Send>;
|
2025-02-02 00:46:04 +01:00
|
|
|
pub mod account;
|