1
0
forked from Manyxyz/Lab2

User controller/User added to the project

This commit is contained in:
Manyxyz
2025-10-14 13:50:44 +02:00
parent 2ce7cf8c9c
commit 9a46785484
3 changed files with 9 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");
System.out.println("Second message");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
} }

View File

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

View File

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