streams/Zotlabs/Zot6/IHandler.php
2021-03-10 16:51:42 -08:00

16 lines
223 B
PHP

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