use crate::error::PlatformError;
pub trait PullToRefresh: Send + Sync {
fn start_pull_down_refresh(&self, app_id: &str, path: &str) -> Result<(), PlatformError>;
fn stop_pull_down_refresh(&self, app_id: &str, path: &str) -> Result<(), PlatformError>;
}