Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | # |
||
2 | # This file is part of Glances. |
||
3 | # |
||
4 | # SPDX-FileCopyrightText: 2024 Nicolas Hennion <[email protected]> |
||
5 | # |
||
6 | # SPDX-License-Identifier: LGPL-3.0-only |
||
7 | # |
||
8 | |||
9 | from typing import Any, Dict, List, Protocol, Tuple |
||
10 | |||
11 | |||
12 | class VmsExtension(Protocol): |
||
13 | def stop(self) -> None: |
||
14 | raise NotImplementedError |
||
15 | |||
16 | def update(self, all_tag) -> Tuple[Dict, List[Dict[str, Any]]]: |
||
17 | raise NotImplementedError |
||
18 |