mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
b3f8af8e06
Qml code referring to the old code base commented out, but not deleted, due to easier refactoring the rest of the app.
21 lines
353 B
QML
21 lines
353 B
QML
pragma Singleton
|
|
|
|
import QtQuick 2.13
|
|
|
|
QtObject {
|
|
// Not Refactored Yet
|
|
// property var keycardModelInst: keycardModel
|
|
|
|
function startConnection() {
|
|
// keycardModel.startConnection()
|
|
}
|
|
|
|
function init(pin) {
|
|
// keycardModel.init(pin)
|
|
}
|
|
|
|
function recoverAccount() {
|
|
// keycardModel.recoverAccount()
|
|
}
|
|
}
|