diff options
| -rw-r--r-- | chess-transport.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chess-transport.el b/chess-transport.el index 8049e7c..1aff581 100644 --- a/chess-transport.el +++ b/chess-transport.el @@ -18,6 +18,10 @@ (defun chess-transport-handler (event &rest args) "This is an example of a generic transport engine." (cond + ((eq event 'initialize) + ;; initialize your transport here + ) + ((eq event 'send) ;; transmit the string given in (car args) to your outbound ;; transport from here |
