added UserEntity

This commit is contained in:
2025-10-14 13:47:23 +02:00
parent 927ac7f180
commit ab2470155b
2 changed files with 5 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, World!");
SpringApplication.run(DemoApplication.class, args);
}

View File

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