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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from ivle.webapp.base.plugins import ViewPlugin
from ivle.webapp.base.plugins import OverlayPlugin
from ivle.webapp.console.service import ConsoleServiceRESTView
from ivle.webapp.console.overlay import ConsoleOverlay

class Plugin(ViewPlugin, OverlayPlugin):
    """
    The Plugin class for the console plugin.
    """
    urls = [
        ('console/service', ConsoleServiceRESTView),
    ]
    overlays = [
        ConsoleOverlay,
    ]
    media = 'media'