9ac4f7525e
very minimal, index view only with empty page content
12 lines
218 B
Python
12 lines
218 B
Python
# -*- coding: utf-8; -*-
|
|
|
|
from wuttaweb.menus import MenuHandler
|
|
|
|
|
|
class NullMenuHandler(MenuHandler):
|
|
"""
|
|
Dummy menu handler for testing.
|
|
"""
|
|
def make_menus(self, request, **kwargs):
|
|
return []
|