"Modified DemoApplication.java and added a new package with the UserController.java file"

This commit is contained in:
musmike 2024-10-20 22:55:52 +02:00
parent 8cf43a3560
commit d05b7d97e0
2 changed files with 5 additions and 0 deletions

View File

@ -8,6 +8,7 @@ public class DemoApplication {
public static void main(String[] args) {
System.out.println("Start application");
System.out.println("The second message");
SpringApplication.run(DemoApplication.class, args);
}

View File

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