summaryrefslogtreecommitdiff
path: root/pystache/__init__.py
blob: 1bf7173c728c7b2a5e0ddec0c42fd150a7f64a1d (plain)
1
2
3
4
5
6
# We keep all initialization code in a separate module.
from pystache.init import *

# TODO: make sure that "from pystache import *" exposes only the following:
#   ['__version__', 'render', 'Renderer', 'TemplateSpec'] 
#   and add a unit test for this.