diff options
| -rw-r--r-- | server/index.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/server/index.php b/server/index.php index 166e82e..41b4e73 100644 --- a/server/index.php +++ b/server/index.php @@ -34,5 +34,12 @@ $imageObject->action($action); $App->show(); break; + + case "compute": + include_once("core/Compute.php"); + $computeObject = new compute($App); + $computeObject->action($action); + $App->show(); + break; } |
