summaryrefslogtreecommitdiff
path: root/src/main/python/utils/app.py
blob: 4540a43c80f86ebb2b468dd6302502d252b85684 (plain)
1
2
3
4
5
6
7
8
9
10
"""
Declare fbs application so that it can be imported in other modules.
"""

from fbs_runtime.application_context.PyQt5 import ApplicationContext
app = ApplicationContext()

def fileImporter(file):
    # Helper function to fetch files from src/main/resources
    return app.get_resource(file)