source: src/main/java/com/tourMate/TourMateApplication.java@ e6c2521

Last change on this file since e6c2521 was e6c2521, checked in by darsov2 <62809499+darsov2@…>, 6 months ago

images upload/download impl, other fixes

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