blob: 3a7d34329bdf5171bd93e5d70736891778d6fb83 [file] [log] [blame]
/**
* Copyright (c) 2018 CEA.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* CEA - initial API and implementation and/or initial documentation
*/
package org.eclipse.sensinact.studio.webapp.indoor;
import org.eclipse.sensinact.studio.http.services.server.RouteUtil;
import org.eclipse.sensinact.studio.webapp.indoor.content.IndoorApplication;
import org.eclipse.ui.IStartup;
/**
* @author Etienne Gandrille
*/
public class Startup implements IStartup {
@Override
public void earlyStartup() {
RouteUtil.attachRoute("/webapp/indoor", new IndoorApplication());
}
}