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 | |
---|
1 | package it.finki.charitable;
|
---|
2 |
|
---|
3 |
|
---|
4 | import org.springframework.boot.SpringApplication;
|
---|
5 | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
---|
6 | import org.springframework.scheduling.annotation.EnableScheduling;
|
---|
7 |
|
---|
8 | @SpringBootApplication
|
---|
9 | @EnableScheduling
|
---|
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.