add new api-module to output list of possible modules/functions

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2018-02-18 10:19:17 +01:00
parent bdfd601dae
commit 532551263d
6 changed files with 272 additions and 13 deletions

View File

@@ -0,0 +1,15 @@
<?php
interface ResourceEntity
{
public function list();
public function get();
public function add();
public function update();
public function delete();
}