source: src/main/java/edu/gjoko/schedlr/SchedlrApplication.java@ 950fa0d

Last change on this file since 950fa0d was 204464d, checked in by Gjoko <goko_kostadinov@…>, 21 months ago

Adding register customer functionality

  • Property mode set to 100644
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.