Coverage for src / ezcompiler / assets / __init__.py: 100.00%
3 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-27 06:49 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-27 06:49 +0000
1# ///////////////////////////////////////////////////////////////
2# ASSETS - Static assets and templates
3# Project: ezcompiler
4# ///////////////////////////////////////////////////////////////
6"""
7Assets module - Static assets and templates for EzCompiler.
9This module provides access to static assets including template files
10used for generating configuration files, setup scripts, and version info.
11"""
13from __future__ import annotations
15# ///////////////////////////////////////////////////////////////
16# IMPORTS
17# ///////////////////////////////////////////////////////////////
18# Local imports
19from .templates import TemplateLoader
21# ///////////////////////////////////////////////////////////////
22# PUBLIC API
23# ///////////////////////////////////////////////////////////////
25__all__ = [
26 "TemplateLoader",
27]