mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2026-08-29 18:44:11 -05:00
30 lines
721 B
Python
30 lines
721 B
Python
"""Template package for template and variable management.
|
|
|
|
This package provides Template, VariableCollection, VariableSection, and Variable
|
|
classes for managing templates and their variables.
|
|
"""
|
|
|
|
from .template import (
|
|
Template,
|
|
TemplateErrorHandler,
|
|
TemplateFile,
|
|
TemplateMetadata,
|
|
TemplateVersionMetadata,
|
|
normalize_template_slug,
|
|
)
|
|
from .variable import Variable
|
|
from .variable_collection import VariableCollection
|
|
from .variable_section import VariableSection
|
|
|
|
__all__ = [
|
|
"Template",
|
|
"TemplateErrorHandler",
|
|
"TemplateFile",
|
|
"TemplateMetadata",
|
|
"TemplateVersionMetadata",
|
|
"Variable",
|
|
"VariableCollection",
|
|
"VariableSection",
|
|
"normalize_template_slug",
|
|
]
|