package com.whyc.controller;
|
|
import com.whyc.dto.Response;
|
import io.swagger.annotations.Api;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
@RestController
|
@RequestMapping("weather")
|
@Api(tags = "天气查询")
|
@Slf4j
|
public class WeatherController {
|
|
public Response get(){
|
|
return null;
|
}
|
}
|