程序员理财课 Python量化交易系统实战

661 阅读1分钟

程序员理财课 Python量化交易系统实战

v: ititit111222333

package com.project.rbac.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author mark
 * @date 2021/6/10 0010 23:23
 */
@RestController
@RequestMapping("/api")
public class TestController {

    @GetMapping("/test")
    public String test() {
        return "test is ok";
    }

}