This commit is contained in:
2025-10-14 13:51:37 +02:00
3 changed files with 6 additions and 1 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -7,7 +7,8 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
public class DemoApplication { public class DemoApplication {
public static void main(String[] args) { public static void main(String[] args) {
System.out.println("Hello, World!"); System.out.println("Start application");
System.out.println("h ");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
} }

View File

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