1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-01-26 08:36:40 +00:00

18 lines
170 B
C
Raw Normal View History

2019-09-21 23:43:01 +02:00
#ifndef GIT_H
#define GIT_H
#include <QObject>
#include <QUrl>
class Git : public QObject
{
Q_OBJECT
public:
Git();
~Git() override = default;
};
#endif