diff options
Diffstat (limited to 'server/index.php')
| -rwxr-xr-x | server/index.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/server/index.php b/server/index.php index 41f77b8..166e82e 100755 --- a/server/index.php +++ b/server/index.php @@ -27,5 +27,12 @@ $identityObject->action($action); $App->show(); break; + + case "image": + include_once("core/Image.php"); + $imageObject = new image($App); + $imageObject->action($action); + $App->show(); + break; } |
