Add UserEntity, modify DemoApplication

This commit is contained in:
Ewa Górska
2025-10-02 13:34:19 +02:00
parent cd2a226273
commit c2b60aac7b
2 changed files with 5 additions and 0 deletions

View File

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

View File

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