cookiecutter-wuttaweb/{{ cookiecutter.repo_name }}/{{ cookiecutter.package_name }}/web/views/__init__.py
Lance Edgar 34fe32af6b fix: format all code with black
and from now on should not deviate from that...
2025-08-31 13:09:14 -05:00

13 lines
285 B
Python

# -*- coding: utf-8; -*-
"""
{{cookiecutter.project_name}} Views
"""
def includeme(config):
# core views for wuttaweb
config.include("wuttaweb.views.essential")
# TODO: include your own views here
# config.include('{{cookiecutter.package_name}}.web.views.widgets')