use std::sync::Arc;
use tokio::sync::RwLock;
use crate::protocol::Message;
use crate::state::ServerState;
pub async fn handle_oper(
_server_state: Arc<RwLock<ServerState>>,
_connection_id: u64,
_params: Vec<String>,
) -> Result<Vec<Message>, Box<dyn std::error::Error>> {
// TODO: Implement oper command
Ok(vec![])
}