source: src/main/java/edu/gjoko/schedlr/SchedlrApplication.java

Last change on this file was 77205be, checked in by gjoko kostadinov <gjokokostadinov@…>, 6 months ago

Add entire code

  • Property mode set to 100755
File size: 416 bytes
Line 
1package edu.gjoko.schedlr;
2
3import org.springframework.boot.SpringApplication;
4import org.springframework.boot.autoconfigure.SpringBootApplication;
5import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
6
7@SpringBootApplication
8@EnableJpaAuditing
9public class SchedlrApplication {
10
11 public static void main(String[] args) {
12 SpringApplication.run(SchedlrApplication.class, args);
13 }
14
15}
Note: See TracBrowser for help on using the repository browser.