This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/Zotlabs/Zot6/IHandler.php

19 lines
248 B
PHP

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