Last change
on this file was 5306751, checked in by NikolaCenevski <cenevskinikola@…>, 3 years ago |
Dodadeno posts to be approved
|
-
Property mode
set to
100644
|
File size:
419 bytes
|
Rev | Line | |
---|
[3fc9e50] | 1 | package it.finki.charitable;
|
---|
| 2 |
|
---|
| 3 |
|
---|
| 4 | import org.springframework.boot.SpringApplication;
|
---|
| 5 | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
---|
[5306751] | 6 | import org.springframework.scheduling.annotation.EnableScheduling;
|
---|
[3fc9e50] | 7 |
|
---|
| 8 | @SpringBootApplication
|
---|
[5306751] | 9 | @EnableScheduling
|
---|
[3fc9e50] | 10 | public 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.