Added file UserEntity.java and modified DemoApplication.java

This commit is contained in:
Piotr Trochonowicz
2025-10-14 14:03:34 +02:00
parent 18622efff1
commit e5d5c3bd7f
2 changed files with 6 additions and 1 deletions

View File

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

View File

@@ -0,0 +1,4 @@
package com.example.demo.domain;
public class UserEntity {
}