Coverage for src / ezqt_app / shared / resources / images.py: 100.00%
3 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-26 07:07 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-26 07:07 +0000
1# ///////////////////////////////////////////////////////////////
2# SHARED.RESOURCES.IMAGES - Images registry
3# Project: ezqt_app
4# ///////////////////////////////////////////////////////////////
6"""
7Shared image resource registry.
8"""
10from __future__ import annotations
12# ///////////////////////////////////////////////////////////////
13# CLASSES
14# ///////////////////////////////////////////////////////////////
17class Images:
18 """
19 Application image management class.
21 This class contains paths to images
22 used in the application.
23 """
25 logo_placeholder: str = ":/images/logo-placeholder.jpg"