streams/Zotlabs/Zot6/IHandler.php
2018-05-28 19:42:40 -07:00

18 lines
253 B
PHP

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