From d120e5df9d257de9a387afb161b9faff806fe5e4 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Thu, 2 Jun 2022 20:54:37 +0200 Subject: [PATCH] Add import to README --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 0636fa8..a0f83a5 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ qmlRegisterType("Process", 1, 0, "Process"); Use in QML: ``` +import Process 1.0 + +# ... + Component.onCompleted: { process.start("some-bin", ["some args"]) }