| Total Complexity | 1 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| 1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
| 27 | class RootController(BaseRootController): |
||
| 28 | logger = LOG |
||
| 29 | |||
| 30 | def __init__(self): |
||
| 31 | v1_controller = v1_root.RootController() |
||
| 32 | self.controllers = { |
||
| 33 | 'v1': v1_controller, |
||
| 34 | } |
||
| 35 | |||
| 36 | self.default_controller = v1_controller |
||
| 37 |