From 0f39eee9a325ae7ca8360f65348cbdbbdd79cfa2 Mon Sep 17 00:00:00 2001 From: dharm pimsen <64675096+damp11113@users.noreply.github.com> Date: Sun, 17 Mar 2024 21:06:39 +0700 Subject: [PATCH] Updated Event Handles (markdown) --- Event-Handles.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Event-Handles.md b/Event-Handles.md index 77ea5b6..899a8db 100644 --- a/Event-Handles.md +++ b/Event-Handles.md @@ -4,8 +4,9 @@ To handle the event can use `on_user()` decorator ssh = Server() @ssh.on_user("...") -def ...(channel, data, client): +def ...(...output...): ... + return ..return.. ```