streams/Zotlabs/Zot6/IHandler.php
2019-01-26 12:30:18 -08:00

16 lines
216 B
PHP

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