mirror of https://github.com/conqp/rcon
Browse Source
By changing this to a class we clean up code duplication. Now we just declare the host, port, and password then call the method with just a command and arguments. tested to confirm workingpull/20/head
4 changed files with 99 additions and 73 deletions
@ -1,7 +1,7 @@ |
|||
"""Source RCON implementation.""" |
|||
|
|||
from rcon.source.async_rcon import rcon |
|||
from rcon.source.async_rcon import Rcon |
|||
from rcon.source.client import Client |
|||
|
|||
|
|||
__all__ = ["Client", "rcon"] |
|||
__all__ = ["Client", "Rcon"] |
|||
|
Loading…
Reference in new issue