Last change
on this file was 77205be, checked in by gjoko kostadinov <gjokokostadinov@…>, 11 months ago |
Add entire code
|
-
Property mode
set to
100755
|
File size:
416 bytes
|
Line | |
---|
1 | package edu.gjoko.schedlr;
|
---|
2 |
|
---|
3 | import org.springframework.boot.SpringApplication;
|
---|
4 | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
---|
5 | import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
|
---|
6 |
|
---|
7 | @SpringBootApplication
|
---|
8 | @EnableJpaAuditing
|
---|
9 | public class SchedlrApplication {
|
---|
10 |
|
---|
11 | public static void main(String[] args) {
|
---|
12 | SpringApplication.run(SchedlrApplication.class, args);
|
---|
13 | }
|
---|
14 |
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.