🔧 Fix import paths: Remove non-existent prelude module references

- Fixed 101+ files importing common::types::prelude which doesn't exist
- Changed all imports to use common::types directly
- Fixed BarEvent duplicate import in data/src/types.rs
- Aligned all imports with canonical type system in common crate
This commit is contained in:
jgrusewski
2025-09-26 19:53:00 +02:00
parent a0ceb4bdfd
commit 72f607759a
117 changed files with 1542 additions and 317 deletions

View File

@@ -124,10 +124,10 @@ pub struct MockMarketData {
#[derive(Debug, Clone)]
// OrderSide now imported from canonical source
use common::types::prelude::OrderSide;
use common::types::OrderSide;
// OrderStatus now imported from canonical source
use common::types::prelude::OrderStatus;
use common::types::OrderStatus;
impl MockTradingService {
pub fn new() -> Self {