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 d6b0329..ac66c95 100755 --- a/server/index.php +++ b/server/index.php @@ -52,6 +52,13 @@ $computeObject->action($action); $App->show(); break; + + case "floatingip": + include_once("core/FloatingIp.php"); + $computeObject = new floatingIp($App); + $computeObject->action($action); + $App->show(); + break; } }else{ |
