source: src/main/java/it/finki/charitable/CharitableApplication.java@ 5306751

Last change on this file since 5306751 was 5306751, checked in by NikolaCenevski <cenevskinikola@…>, 3 years ago

Dodadeno posts to be approved

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