implemented main function for publish report viewer

This commit is contained in:
iLLiCiTiT 2022-10-19 23:19:51 +02:00
parent 6ead88eeb5
commit a23dfcea79

View file

@ -1,3 +1,5 @@
from Qt import QtWidgets
from .report_items import (
PublishReport
)
@ -16,4 +18,13 @@ __all__ = (
"PublishReportViewerWidget",
"PublishReportViewerWindow",
"main",
)
def main():
app = QtWidgets.QApplication([])
window = PublishReportViewerWindow()
window.show()
return app.exec_()