Added UserEntity, modified DemoApplication

This commit is contained in:
Squashim
2025-10-02 13:03:15 +02:00
parent 21d2e7fbaf
commit 17eef2e3d5
2 changed files with 6 additions and 1 deletions

View File

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

View File

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