streams/Zotlabs/Zot6/IHandler.php
2018-04-22 18:51:46 -07:00

18 lines
223 B
PHP

<?php
namespace Zotlabs\Zot6;
interface IHandler {
function Notify($data);
function Request($data);
function Rekey($sender,$data);
function Refresh($sender,$recipients);
function Purge($sender,$recipients);
}