1
0
forked from Konrad/Lab2

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

@@ -7,7 +7,8 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
public class DemoApplication {
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);
}

View File

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