1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-01-24 23:56:39 +00:00

21 lines
292 B
C
Raw Normal View History

2025-01-10 13:48:38 +01:00
#ifndef GIT_H
#define GIT_H
#include <QUrl>
#include <QObject>
class Git : public QObject
{
Q_OBJECT
public:
2025-01-10 13:58:46 +01:00
Git() = default;
2025-01-10 13:48:38 +01:00
~Git() override = default;
Q_INVOKABLE bool clone(QString url, QString path);
// Q_INVOKABLE bool update(QUrl url, QString path);
};
#endif