Modified main program added package domain with UserEntity class

This commit is contained in:
Daniel Mędrek
2025-10-14 11:18:42 +02:00
parent 8d34121c02
commit 41986425e6
2 changed files with 3 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
public class DemoApplication {
public static void main(String[] args) {
System.out.println("Hello!");
System.out.println("Start application");
SpringApplication.run(DemoApplication.class, args);
}

View File

@@ -0,0 +1,2 @@
public class UserEntity{
}