后端初始提交

This commit is contained in:
jdc
2025-11-13 10:13:43 +08:00
parent 13f78a3086
commit f26b4f9a2f
319 changed files with 20722 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.cool;
import com.cool.core.annotation.TokenIgnore;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequiredArgsConstructor
public class Welcome {
@RequestMapping("/")
@TokenIgnore
public String welcome() {
return "welcome";
}
}