blob: 4cb077a6c749e33e48c43331e2067e782275def5 [file] [log] [blame]
/*
* Copyright (c) Robert Bosch GmbH. All rights reserved.
*/
package org.eclipse.blockchain.application;
import org.eclipse.equinox.app.IApplication;
import org.eclipse.equinox.app.IApplicationContext;
/**
* @author ADG5COB
*/
public class BlockchainApplication implements IApplication {
/**
* {@inheritDoc}
*/
@Override
public Object start(final IApplicationContext context) throws Exception {
return null;
}
/**
* {@inheritDoc}
*/
@Override
public void stop() {
// TODO Auto-generated method stub
}
}