Updated [Thai] Home (markdown)

dharm pimsen 2024-03-30 23:27:07 +07:00
parent a01fa280e8
commit bce873ffae

@ -41,9 +41,9 @@ useraccount.add_account("admin", "")
ssh = Server(useraccount)
@ssh.on_user("command")
def command(channel, command: str, client):
def command(client, command: str):
if command == "hello":
Send(channel, "world!")
Send(client, "world!")
ssh.run(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'private_key.pem'))
```