Coverage for topdownengine/asset_paths.py: 100%
5 statements
« prev ^ index » next coverage.py v7.15.2, created at 2026-07-24 02:27 +0000
« prev ^ index » next coverage.py v7.15.2, created at 2026-07-24 02:27 +0000
1# Copyright (c) 2026 Shaurya Sharma
2# SPDX-License-Identifier: MIT
4from pathlib import Path
6PACKAGE_ROOT: Path = Path(__file__).resolve().parent
7"The folder that represents the root directory of the package."
9ASSETS_DIR: Path = PACKAGE_ROOT / "assets"
10"The folder that represents the assets directory of the package."