Added new file UserController, modified DemoApplication

This commit is contained in:
Student 2023-10-03 14:23:42 +02:00
parent 198f115796
commit 5a5719af92
2 changed files with 5 additions and 0 deletions

View File

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

View File

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