diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2023-01-01 20:34:09 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2023-01-01 20:34:09 -0500 |
commit | d3fbefad9cf25786fb5f28f96eeceb65d0a8b35b (patch) | |
tree | 156a23b5c04b93d746ecf592971aefbcc127cfd2 /protocol/src/bot.rs | |
parent | bb2ed3a2926384df063e476d10613fa310cd7ffa (diff) |
Split bridge_engine into a few separate modules
Diffstat (limited to 'protocol/src/bot.rs')
-rw-r--r-- | protocol/src/bot.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocol/src/bot.rs b/protocol/src/bot.rs index a85fda0..24495c8 100644 --- a/protocol/src/bot.rs +++ b/protocol/src/bot.rs @@ -1,8 +1,8 @@ use async_trait::async_trait; use crate::{ - bridge_engine::{Bid, BiddingStatePlayerView, PlayStatePlayerView}, - card::Card, + bridge_engine::{BiddingStatePlayerView, PlayStatePlayerView}, + card::Card, actions::Bid, }; #[async_trait] |