diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-12-27 19:55:10 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-12-27 19:58:45 -0500 |
commit | 21b7b57336cd3bf7bd328ada38c6069a48504f85 (patch) | |
tree | c0d47337f584403febcfc9ec365ea1ea810e782e /protocol/src/bot.rs | |
parent | 3418ebf4db2375e0dfe2343da57d674e1f4fd57f (diff) |
`cargo fmt`
Diffstat (limited to 'protocol/src/bot.rs')
-rw-r--r-- | protocol/src/bot.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/protocol/src/bot.rs b/protocol/src/bot.rs index 250731e..a85fda0 100644 --- a/protocol/src/bot.rs +++ b/protocol/src/bot.rs @@ -1,6 +1,9 @@ use async_trait::async_trait; -use crate::{bridge_engine::{BiddingStatePlayerView, Bid, PlayStatePlayerView}, card::Card}; +use crate::{ + bridge_engine::{Bid, BiddingStatePlayerView, PlayStatePlayerView}, + card::Card, +}; #[async_trait] pub trait BiddingBot { |