blob: f25cd9c75ba1382f4cb9b3372f7b039667a6b877 [file] [log] [blame]
package pl.hackerspace;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
@SpringBootApplication
@EnableJpaRepositories
public class SpringBootReactApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootReactApplication.class, args);
}
}