4 changed files with 27 additions and 10 deletions
@ -0,0 +1,19 @@ |
|||
package com.ccsens.filedeal.api; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: whj |
|||
* @time: 2020/9/22 10:25 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("debug") |
|||
public class DebugController { |
|||
|
|||
@RequestMapping("/") |
|||
public String index(){ |
|||
return "hello world"; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue