main
Last change
on this file since 358ca06 was 6e7b472, checked in by Petar Partaloski <ppartaloski@…>, 3 years ago |
Initial commit, barebones setup
|
-
Property mode
set to
100644
|
File size:
350 bytes
|
Line | |
---|
1 | package com.wediscussmovies.project;
|
---|
2 |
|
---|
3 | import org.springframework.boot.SpringApplication;
|
---|
4 | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
---|
5 |
|
---|
6 | @SpringBootApplication
|
---|
7 | public class WeDiscussMoviesApplication {
|
---|
8 |
|
---|
9 | public static void main(String[] args) {
|
---|
10 | SpringApplication.run(WeDiscussMoviesApplication.class, args);
|
---|
11 | }
|
---|
12 |
|
---|
13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.