|
@@ -0,0 +1,14 @@
|
|
|
|
+package com.backendsys.controller;
|
|
|
|
+
|
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
+
|
|
|
|
+@RestController
|
|
|
|
+public class RedirectController {
|
|
|
|
+
|
|
|
|
+ @GetMapping("/")
|
|
|
|
+ public String redirectRoot() {
|
|
|
|
+ return "";
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|