mirror of https://github.com/conqp/rcon
16 changed files with 17 additions and 11 deletions
@ -1,8 +1,6 @@ |
|||||
"""RCON client library.""" |
"""RCON client library.""" |
||||
|
|
||||
from rcon.async_rcon import rcon |
from rcon.source import RequestIdMismatch, WrongPassword, Client, rcon |
||||
from rcon.client import Client |
|
||||
from rcon.exceptions import RequestIdMismatch, WrongPassword |
|
||||
|
|
||||
|
|
||||
__all__ = ['RequestIdMismatch', 'WrongPassword', 'Client', 'rcon'] |
__all__ = ['RequestIdMismatch', 'WrongPassword', 'Client', 'rcon'] |
||||
|
@ -0,0 +1,8 @@ |
|||||
|
"""Source RCON implementation.""" |
||||
|
|
||||
|
from rcon.source.async_rcon import rcon |
||||
|
from rcon.source.client import Client |
||||
|
from rcon.source.exceptions import RequestIdMismatch, WrongPassword |
||||
|
|
||||
|
|
||||
|
__all__ = ['RequestIdMismatch', 'WrongPassword', 'Client', 'rcon'] |
Loading…
Reference in new issue