Added domain package with UseEntity class

This commit is contained in:
Sebastian Czupryn 2025-10-03 11:13:57 +02:00
parent 6fea98d4fb
commit 7a56f82b0d
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,4 @@
package domain;
public class UserEntity {
}

View File

@ -6,6 +6,7 @@ import org.springframework.boot.SpringApplication;
public class Main {
public static void main(String[] args) {
System.out.println("Start application");
System.out.println("Start application 3");
SpringApplication.run(Main.class, args);
}
}