diff options
author | Mario <mario@mariovavti.com> | 2021-05-27 19:55:06 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-05-27 19:55:06 +0000 |
commit | 4bde2f64bdef15aba833528ac8c663c99e55e8dd (patch) | |
tree | c25ae06d359f44658617796ced038ddac458fb6f /Zotlabs/Zot/ZotHandler.php | |
parent | 8ca487115f70450d9b9f1642fc259da9431eb170 (diff) | |
download | volse-hubzilla-4bde2f64bdef15aba833528ac8c663c99e55e8dd.tar.gz volse-hubzilla-4bde2f64bdef15aba833528ac8c663c99e55e8dd.tar.bz2 volse-hubzilla-4bde2f64bdef15aba833528ac8c663c99e55e8dd.zip |
remove zot
Diffstat (limited to 'Zotlabs/Zot/ZotHandler.php')
-rw-r--r-- | Zotlabs/Zot/ZotHandler.php | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/Zotlabs/Zot/ZotHandler.php b/Zotlabs/Zot/ZotHandler.php deleted file mode 100644 index ab8815b3d..000000000 --- a/Zotlabs/Zot/ZotHandler.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -namespace Zotlabs\Zot; - -class ZotHandler implements IHandler { - - function Ping() { - zot_reply_ping(); - } - - function Pickup($data) { - zot_reply_pickup($data); - } - - function Notify($data) { - zot_reply_notify($data); - } - - function Request($data) { - zot_reply_message_request($data); - } - - function Rekey($sender,$data) { - zot_rekey_request($sender,$data); - } - - function AuthCheck($data,$encrypted) { - zot_reply_auth_check($data,$encrypted); - } - - function Purge($sender,$recipients) { - zot_reply_purge($sender,$recipients); - } - - function Refresh($sender,$recipients) { - zot_reply_refresh($sender,$recipients); - } - -} |