You are here

function _entity_share_server_proxy_router in Entity Share 7

Route callback to start the entity share server.

1 string reference to '_entity_share_server_proxy_router'
entity_share_server_menu in modules/entity_share_server/entity_share_server.module
Implements hook_menu().

File

modules/entity_share_server/entity_share_server.module, line 42
Entity Share Server .module file.

Code

function _entity_share_server_proxy_router() {
  $rest_server = new EntityShareServerRest();
  $rest_server
    ->handle();
}