14 lines
245 B
Python
14 lines
245 B
Python
# -*- coding: utf-8; -*-
|
|
"""
|
|
Wutta Demo Views
|
|
"""
|
|
|
|
|
|
def includeme(config):
|
|
|
|
# core views for wuttaweb
|
|
config.include('wuttaweb.views.essential')
|
|
|
|
# TODO: include your own views here
|
|
#config.include('wuttademo.web.views.widgets')
|