blob: 1e414b75e8502a9b8d14032a2ab8fa4761654c5e [file] [log] [blame]
package org.apache.airavata.datalake.metadata;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
@ComponentScan(basePackages = {"org.apache.airavata"})
@SpringBootApplication
public class Neo4JServiceInitializer {
public static void main(String[] args) {
SpringApplication.run(Neo4JServiceInitializer.class, args);
}
}