mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
13 lines
265 B
Python
13 lines
265 B
Python
|
|
"""
|
|
TODO: add a docstring.
|
|
|
|
"""
|
|
|
|
# We keep all initialization code in a separate module.
|
|
|
|
from pystache.init import parse, render, Renderer, TemplateSpec
|
|
|
|
__all__ = ['parse', 'render', 'Renderer', 'TemplateSpec']
|
|
|
|
__version__ = '0.5.4' # Also change in setup.py.
|