Skip to content

Commit

Permalink
Adding Debug trait
Browse files Browse the repository at this point in the history
  • Loading branch information
ndefokou committed Nov 19, 2024
1 parent 9ba0921 commit b17a748
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ use std::sync::Arc;

pub struct RoutingProtocol;

#[derive(Debug)]
struct ForwardHandler;

#[async_trait]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ use std::sync::Arc;

pub struct MediatorCoordinationProtocol;

#[derive(Debug)]
struct MediateRequestHandler;
#[derive(Debug)]
struct KeylistUpdateHandler;
#[derive(Debug)]
struct KeylistQueryHandler;

#[async_trait]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ use std::sync::Arc;

pub struct PickupProtocol;

#[derive(Debug)]
struct StatusRequestHandler;
#[derive(Debug)]
struct DeliveryRequestHandler;
#[derive(Debug)]
struct MessageReceivedHandler;
#[derive(Debug)]
struct LiveModeChangeHandler;

#[async_trait]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ use std::sync::Arc;

pub struct TrustPingProtocol;

#[derive(Debug)]
struct TrustPingHandler;

#[async_trait]
Expand Down

0 comments on commit b17a748

Please sign in to comment.