mirror of
https://github.com/payden/libwsclient
synced 2025-06-13 12:53:52 +00:00
7 lines
140 B
Rust
7 lines
140 B
Rust
|
use crate::models::market::Market;
|
||
|
|
||
|
pub struct SnipingOpportunity {
|
||
|
pub market: Market,
|
||
|
pub price: f64,
|
||
|
pub liquidity: f64,
|
||
|
}
|