source: src/main/java/com/example/salonbella/SalonbellaApplication.java@ 4d7e387

Last change on this file since 4d7e387 was 4d7e387, checked in by makyjovanovsky <mjovanovski04@…>, 18 months ago

commit 1

  • Property mode set to 100644
File size: 415 bytes
Line 
1package com.example.salonbella;
2
3import org.springframework.boot.SpringApplication;
4import org.springframework.boot.autoconfigure.SpringBootApplication;
5import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
6
7@SpringBootApplication
8public class SalonbellaApplication {
9
10 public static void main(String[] args) {
11 SpringApplication.run(SalonbellaApplication.class, args);
12 }
13
14}
Note: See TracBrowser for help on using the repository browser.