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

1
2
3
4
5
6
7
8
9
10
from ivle.webapp.base.plugins import BasePlugin
from ivle.webapp.console.service import ConsoleServiceRESTView

class Plugin(BasePlugin):
    """
    The Plugin class for the console plugin.
    """
    urls = [
        ('console/service', ConsoleServiceRESTView)
    ]