4f9a47027c
- Started work on the matrix-nio backend, which will be used instead of matrix-python-sdk for greater control and cleaner design - Have an Application (QGuiApplication) class to habdle argument parsing and setting some Qt properties like application name
13 lines
210 B
Python
13 lines
210 B
Python
# Copyright 2019 miruka
|
|
# This file is part of harmonyqml, licensed under GPLv3.
|
|
|
|
import sys
|
|
|
|
from . import app
|
|
|
|
# logging.basicConfig(level=logging.INFO)
|
|
|
|
|
|
def run() -> None:
|
|
_ = app.Application(sys.argv)
|