Coverage for src / ezcompiler / assets / templates / __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# TEMPLATES - Template loading and resource access
3# Project: ezcompiler
4# ///////////////////////////////////////////////////////////////
6"""
7Templates module - Template loading and resource access for EzCompiler.
9This module provides template loading functionality for accessing
10template resource files (.template) from the assets directory.
11Template processing (variable substitution) is handled by
12TemplateProcessor in the utils layer.
13"""
15from __future__ import annotations
17# ///////////////////////////////////////////////////////////////
18# IMPORTS
19# ///////////////////////////////////////////////////////////////
20# Local imports
21from .template_loader import TemplateLoader
23# ///////////////////////////////////////////////////////////////
24# PUBLIC API
25# ///////////////////////////////////////////////////////////////
27__all__ = ["TemplateLoader"]