Added UserEntity.java, modified DemoApplication.java

This commit is contained in:
student 2023-10-03 14:24:26 +02:00
parent 0e8f2d9fd4
commit dd2070ae1b
2 changed files with 5 additions and 0 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 comment");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
} }

View File

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