streams/Zotlabs/Zot6/IHandler.php

19 lines
223 B
PHP
Raw Normal View History

2018-04-23 01:51:46 +00:00
<?php
namespace Zotlabs\Zot6;
interface IHandler {
function Notify($data);
function Request($data);
function Rekey($sender,$data);
function Refresh($sender,$recipients);
function Purge($sender,$recipients);
}