source: PaintOfHeart-main/PaintOfHeart/src/main/java/com/example/paintofheart/PaintOfHeartApplication.java

Last change on this file was bdc68e0, checked in by AnastasijaCv <ane.cvetkovska000@…>, 15 months ago

Initial commit

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