remove unused Event generation from the pre-2.0.0 SignalR integration (#477)

Remove a vestige of the adhoc events used by the previous SingalR integration for container updates.
This commit is contained in:
bmc-msft
2021-01-28 16:56:31 -05:00
committed by GitHub
parent f155ad625f
commit 14fc1ca51f
2 changed files with 4 additions and 28 deletions

View File

@ -3,14 +3,11 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
from enum import Enum
from typing import Any, Dict, NewType, Union
from uuid import UUID
from typing import Any, Dict, NewType
from onefuzztypes.validators import check_alnum, check_alnum_dash
Extension = Dict[str, Any]
Event = Union[str, int, UUID, Enum, Dict[str, str]]
Directory = NewType("Directory", str)
File = NewType("File", str)