aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/__init__.py
blob: 2454c56561cbabbb0b27cea5ef189dd31243b3d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Base DebugPanel class"""

class DebugPanel(object):
    """
    Base class for debug panels.
    """
    def title(self):
        raise NotImplementedError

    def url(self):
        raise NotImplementedError

    def content(self):
        raise NotImplementedError