mount('/', new Root()); $app->mount('/dashboard', new Dashboard()); $app->mount('/bas', new Bas()); $app->mount('/database', new Database()); $app->mount('/databases', new Databases()); $app->mount('/setup', new Setup()); $app->mount('/sphinx', new Sphinx()); $app->mount('/connected-users', new ConnectedUsers()); $app->mount('/publications', new Publications()); $app->mount('/users', new Users()); $app->mount('/fields', new Fields()); $app->mount('/subdefs', new Subdefs()); $app->mount('/description', new Description()); $app->mount('/tests/connection', new ConnectionTest()); $app->mount('/tests/pathurl', new PathFileTest()); return $app; } );