source: src/main/java/com/example/autopartz/AutoPartzApplication.java@ 75464a6

main
Last change on this file since 75464a6 was 75464a6, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 19 months ago

Initializing the app

  • Property mode set to 100644
File size: 332 bytes
Line 
1package com.example.autopartz;
2
3import org.springframework.boot.SpringApplication;
4import org.springframework.boot.autoconfigure.SpringBootApplication;
5
6@SpringBootApplication
7public class AutoPartzApplication {
8
9 public static void main(String[] args) {
10 SpringApplication.run(AutoPartzApplication.class, args);
11 }
12
13}
Note: See TracBrowser for help on using the repository browser.