omg it's very hacky but mounting kinda works

This commit is contained in:
2023-06-08 12:00:45 +02:00
parent 97cc03770e
commit f24f075cca
10 changed files with 250 additions and 9 deletions

View File

@@ -0,0 +1,17 @@
//
// Created by Stepan Usatiuk on 07.06.2023.
//
#ifndef BACKUP_COMMANDMOUNT_H
#define BACKUP_COMMANDMOUNT_H
#include "Command.h"
class CommandMount : public Command {
public:
CommandMount();
void run(Context ctx) override;
};
#endif//BACKUP_COMMANDMOUNT_H