source: src/main/java/com/example/salonbella/SalonbellaApplication.java

Last change on this file was 74af394, checked in by makyjovanovsky <mjovanovski04@…>, 17 months ago

login/register with mail confirmation

  • 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.