package xyz.gaojfblog.komorebi.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PostMapping;
import xyz.gaojfblog.komorebi.common.utils.R;

@Controller
public class HelloController {
    @PostMapping("/hello")
    public R hello(){
        return R.ok();
    }
}