mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Fix missing imports
This commit is contained in:
parent
e0b115f62b
commit
4f6b0e1429
2 changed files with 4 additions and 3 deletions
|
@ -3,7 +3,7 @@ from .errors import HeraldError, ConnectionClosedError, LinkError, InvalidServer
|
||||||
from .link import Link
|
from .link import Link
|
||||||
from .package import Package
|
from .package import Package
|
||||||
from .request import Request
|
from .request import Request
|
||||||
from .response import Response
|
from .response import ResponseSuccess, ResponseError
|
||||||
from .server import Server
|
from .server import Server
|
||||||
|
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@ __all__ = [
|
||||||
"Link",
|
"Link",
|
||||||
"Package",
|
"Package",
|
||||||
"Request",
|
"Request",
|
||||||
"Response",
|
"ResponseSuccess",
|
||||||
|
"ResponseError",
|
||||||
"Server",
|
"Server",
|
||||||
]
|
]
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ with open("README.md", "r") as f:
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="royalherald",
|
name="royalherald",
|
||||||
version="5.0b2",
|
version="5.0b3",
|
||||||
author="Stefano Pigozzi",
|
author="Stefano Pigozzi",
|
||||||
author_email="ste.pigozzi@gmail.com",
|
author_email="ste.pigozzi@gmail.com",
|
||||||
description="A websocket communication protocol",
|
description="A websocket communication protocol",
|
||||||
|
|
Loading…
Reference in a new issue