Add domain package with UserEntity class

Add println to the DemoApplication class
This commit is contained in:
MichuMGW 2025-10-03 11:36:13 +02:00
parent 55dbe58657
commit 24e0f2b213
2 changed files with 5 additions and 0 deletions

View File

@ -8,6 +8,7 @@ public class DemoApplication {
public static void main(String[] args) {
System.out.println("Start application");
System.out.println("Develop_2 here");
SpringApplication.run(DemoApplication.class, args);
}

View File

@ -0,0 +1,4 @@
package domain;
public class UserEntity {
}