~azzar1/unity/add-show-desktop-key

1099.1.29 by William Grant
ivle.webapp.console.service: Port www/apps/consoleservice to new framework.
1
from ivle.webapp.base.plugins import BasePlugin
2
from ivle.webapp.console.service import ConsoleServiceRESTView
3
4
class Plugin(BasePlugin):
5
    """
6
    The Plugin class for the console plugin.
7
    """
8
    urls = [
9
        ('console/service', ConsoleServiceRESTView)
10
    ]