mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-12 23:35:32 +00:00
ee5fef7dda
closes #3799
20 lines
319 B
QML
20 lines
319 B
QML
pragma Singleton
|
|
|
|
import QtQuick 2.13
|
|
|
|
QtObject {
|
|
property var keycardModelInst: keycardModel
|
|
|
|
function startConnection() {
|
|
keycardModel.startConnection()
|
|
}
|
|
|
|
function init(pin) {
|
|
keycardModel.init(pin)
|
|
}
|
|
|
|
function recoverAccount() {
|
|
keycardModel.recoverAccount()
|
|
}
|
|
}
|