reverting back

This commit is contained in:
filipriec
2025-03-30 13:11:04 +02:00
parent dc994f6ee1
commit fd6a9b73be
2 changed files with 0 additions and 79 deletions

View File

@@ -1,17 +0,0 @@
// src/modes/handlers/read_only.rs
use async_trait::async_trait;
use crate::tui::terminal::grpc_client::GrpcClient;
#[async_trait]
pub trait ReadOnlyHandler {
async fn handle_read_only_action(
&mut self,
action: &str,
grpc_client: &mut GrpcClient,
current_position: &mut u64,
total_count: u64,
) -> Result<String, Box<dyn std::error::Error>>;
// Add this method
fn adjust_cursor_position(&mut self, ideal_column: &mut usize);
}