1
0
mirror of https://github.com/QRouland/UTPass.git synced 2026-01-10 03:26:57 +00:00

Add git plugin TG-41 closed

This commit is contained in:
2019-09-21 23:43:01 +02:00
parent 1818d3d7e8
commit 42efea67d8
8 changed files with 95 additions and 1 deletions

17
plugins/Git/git.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef GIT_H
#define GIT_H
#include <QObject>
#include <QUrl>
class Git : public QObject
{
Q_OBJECT
public:
Git();
~Git() override = default;
};
#endif