Last change
on this file since 743de55 was 743de55, checked in by macagaso <gasoskamarija@…>, 6 weeks ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
576 bytes
|
Line | |
---|
1 | package finki.it.terapijamkbackend.spring;
|
---|
2 |
|
---|
3 | import org.springframework.boot.SpringApplication;
|
---|
4 | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
---|
5 | import org.springframework.scheduling.annotation.EnableScheduling;
|
---|
6 | import org.springframework.ui.Model;
|
---|
7 | import org.springframework.web.bind.annotation.RequestMapping;
|
---|
8 | import org.springframework.web.bind.annotation.RestController;
|
---|
9 |
|
---|
10 |
|
---|
11 | @SpringBootApplication
|
---|
12 | @EnableScheduling
|
---|
13 | public class TerapijaMkBackend {
|
---|
14 |
|
---|
15 | public static void main(String[] args) {
|
---|
16 | SpringApplication.run(TerapijaMkBackend.class, args);
|
---|
17 | }
|
---|
18 |
|
---|
19 | }
|
---|
20 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.