Delete dist directory

This commit is contained in:
Mikahael 2024-02-25 23:59:01 +05:30 committed by GitHub
parent b2bfb6afd8
commit 9e59089810
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
1776 changed files with 0 additions and 548278 deletions

View file

@ -1,45 +0,0 @@
# Released under the MIT License. See LICENSE for details.
#
"""Functionality for sending and responding to messages.
Supports static typing for message types and possible return types.
"""
from __future__ import annotations
from efro.util import set_canonical_module
from efro.message._protocol import MessageProtocol
from efro.message._sender import MessageSender, BoundMessageSender
from efro.message._receiver import MessageReceiver, BoundMessageReceiver
from efro.message._module import create_sender_module, create_receiver_module
from efro.message._message import (
Message,
Response,
SysResponse,
EmptySysResponse,
ErrorSysResponse,
StringResponse,
BoolResponse,
UnregisteredMessageIDError,
)
__all__ = [
'Message',
'Response',
'SysResponse',
'EmptySysResponse',
'ErrorSysResponse',
'StringResponse',
'BoolResponse',
'MessageProtocol',
'MessageSender',
'BoundMessageSender',
'MessageReceiver',
'BoundMessageReceiver',
'create_sender_module',
'create_receiver_module',
'UnregisteredMessageIDError',
]
# Have these things present themselves cleanly as 'thismodule.SomeClass'
# instead of 'thismodule._internalmodule.SomeClass'
set_canonical_module(module_globals=globals(), names=__all__)