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

10
plugins/Git/plugin.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include <QtQml>
#include "plugin.h"
#include "git.h"
void GitPlugin::registerTypes(const char *uri)
{
//@uri Utils
qmlRegisterSingletonType<Git>(uri, 1, 0, "Git", [](QQmlEngine *, QJSEngine *) -> QObject * { return new Git; });
}