mirror of https://github.com/conqp/rcon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
643 B
27 lines
643 B
"""RCON client library."""
|
|
|
|
from warnings import warn
|
|
|
|
from rcon.source import rcon as _rcon
|
|
from rcon.source import Client as _Client
|
|
|
|
|
|
class Client(_Client):
|
|
"""Backwards compatibility."""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
warn(
|
|
'rcon.Client() is deprecated. Use rcon.source.Client() instead.',
|
|
DeprecationWarning
|
|
)
|
|
|
|
|
|
async def rcon(*args, **kwargs) -> str:
|
|
"""Backwards compatibility."""
|
|
|
|
warn(
|
|
'rcon.rcon() is deprecated. Use rcon.source.rcon() instead.',
|
|
DeprecationWarning
|
|
)
|
|
return await _rcon(*args, **kwargs)
|
|
|