diff --git a/ccserver/handlers.py b/ccserver/handlers.py index 594d70d2ff603df69fa3a58702758f9217baa1c3..cb1a67868e35f00eb342dab35bfda9131d35e2f0 100644 --- a/ccserver/handlers.py +++ b/ccserver/handlers.py @@ -111,6 +111,14 @@ class OnlineCCHandler(CCHandler): raise RightError('You are not allowed to do this action.') +class SpvHandler(OnlineCCHandler): + ''' + Handler binded to 'spv' role. + ''' + + pass + + class HypervisorHandler(OnlineCCHandler): ''' Handler binded to 'hv' role. @@ -828,6 +836,7 @@ class WelcomeHandler(CCHandler): 'cli': CliHandler, 'hv': HypervisorHandler, 'host': None, + 'spv': SpvHandler, } @listed