use std::sync::Arc;
use crate::client::MunaClient;
use super::remote::RemotePredictionService;
#[derive(Clone)]
pub struct BetaPredictionService {
pub remote: RemotePredictionService,
}
impl BetaPredictionService {
pub fn new(client: Arc<MunaClient>) -> Self {
Self {
remote: RemotePredictionService::new(client),
}
}
}