Added UserController in controller package (develop_1)

This commit is contained in:
2025-10-21 10:58:30 +02:00
parent 3ac4291c33
commit 5eeca9859a

View File

@@ -0,0 +1,7 @@
package com.example.demo.controller;
public class UserController {
public String getUser() {
return "User from develop_1 branch";
}
}