mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-21 02:01:03 +07:00
a49892c7e7
* Feat: Add MtProxy (Telegram) * add path files * Feat: Add Telemt (MtProxy) * fixed secret & enum * remove old path * refactor: move logic from ui to core --------- Co-authored-by: vkamn <vk@amnezia.org>
21 lines
755 B
C++
21 lines
755 B
C++
#ifndef TELEMTINSTALLER_H
|
|
#define TELEMTINSTALLER_H
|
|
|
|
#include "installerBase.h"
|
|
|
|
class TelemtInstaller : public InstallerBase {
|
|
Q_OBJECT
|
|
public:
|
|
explicit TelemtInstaller(QObject *parent = nullptr);
|
|
|
|
amnezia::ErrorCode
|
|
extractConfigFromContainer(amnezia::DockerContainer container, const amnezia::ServerCredentials &credentials,
|
|
SshSession *sshSession, amnezia::ContainerConfig &config) override;
|
|
|
|
static void uploadClientSettingsSnapshot(SshSession &sshSession, const amnezia::ServerCredentials &credentials,
|
|
amnezia::DockerContainer container,
|
|
const amnezia::ContainerConfig &config);
|
|
};
|
|
|
|
#endif // TELEMTINSTALLER_H
|