source: trip-planner/src/main/java/finki/diplomska/tripplanner/TripPlannerApplication.java@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

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