source: src/main/java/com/example/baza/BazaApplication.java@ bc39b15

Last change on this file since bc39b15 was ed20c2c, checked in by HumaSejdini <humasejdini12@…>, 2 years ago

Initial commit

  • Property mode set to 100644
File size: 466 bytes
RevLine 
[ed20c2c]1package com.example.baza;
2
3import org.springframework.boot.SpringApplication;
4import org.springframework.boot.autoconfigure.SpringBootApplication;
5import org.springframework.boot.web.servlet.ServletComponentScan;
6import org.springframework.context.annotation.ComponentScan;
7
8@ServletComponentScan
9@SpringBootApplication
10public 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.