Modified DemoApplication.java and added UserEntity (develop_2 work in progress)

This commit is contained in:
2025-10-21 10:56:26 +02:00
parent f425f25cd6
commit e0cdbf8fc6
2 changed files with 6 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,5 @@
package com.example.demo.domain;
public class UserEntity {
private String name = "User";
}