File size: 451 Bytes
7952f32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""Body template library.

Templates are the constrained building blocks for function bodies. See
PROPOSAL.md §3.2. The seed set is in :mod:`graphforge.templates.registry`;
the full ~25-entry library and codegen live in :mod:`library` (TODO).
"""

from graphforge.templates.registry import (
    TemplateSpec,
    get_template,
    known_templates,
    validate_args,
)

__all__ = ["TemplateSpec", "get_template", "known_templates", "validate_args"]