Modify one file and add one file

This commit is contained in:
mateusz
2025-10-02 15:17:05 +02:00
parent 5b0ed316e4
commit c4aebd806c
2 changed files with 5 additions and 0 deletions

View File

@@ -9,6 +9,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");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
System.out.println("App running");
} }
} }

View File

@@ -0,0 +1,4 @@
package controller;
public class UserController {
}