termscp 1.0.0

termscp is a feature rich terminal file transfer and explorer with support for SCP/SFTP/FTP/Kube/S3/WebDAV
//! ## FileTransferActivity
//!
//! `filetransfer_activity` is the module which implements the Filetransfer activity, which is the main activity afterall

use super::FileTransferActivity;

impl FileTransferActivity {
    pub(crate) fn action_mark_file(&mut self, index: usize) {
        self.enqueue_file(index);
    }

    pub(crate) fn action_mark_all(&mut self) {
        self.enqueue_all();
    }

    pub(crate) fn action_mark_clear(&mut self) {
        self.clear_queue();
    }
}