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.
30 lines
734 B
30 lines
734 B
"""RCON client library."""
|
|
|
|
from typing import Any, Coroutine
|
|
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):
|
|
warn(
|
|
'rcon.Client() is deprecated. Use rcon.source.Client() instead.',
|
|
DeprecationWarning,
|
|
stacklevel=2
|
|
)
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
|
def rcon(*args, **kwargs) -> Coroutine[Any, Any, str]:
|
|
"""Backwards compatibility."""
|
|
|
|
warn(
|
|
'rcon.rcon() is deprecated. Use rcon.source.rcon() instead.',
|
|
DeprecationWarning,
|
|
stacklevel=2
|
|
)
|
|
return _rcon(*args, **kwargs)
|
|
|