Last change
on this file was ed20c2c, checked in by HumaSejdini <humasejdini12@…>, 2 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
466 bytes
|
Line | |
---|
1 | package com.example.baza;
|
---|
2 |
|
---|
3 | import org.springframework.boot.SpringApplication;
|
---|
4 | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
---|
5 | import org.springframework.boot.web.servlet.ServletComponentScan;
|
---|
6 | import org.springframework.context.annotation.ComponentScan;
|
---|
7 |
|
---|
8 | @ServletComponentScan
|
---|
9 | @SpringBootApplication
|
---|
10 | public class BazaApplication {
|
---|
11 |
|
---|
12 | public static void main(String[] args) {
|
---|
13 | SpringApplication.run(BazaApplication.class, args);
|
---|
14 | }
|
---|
15 |
|
---|
16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.