using Microsoft.AspNetCore.Mvc; namespace ReZeroWeb.Controllers { /// /// Ô­Éú½Ó¿Ú /// [ApiController] [Route("[controller]")] public class WeatherForecastController : ControllerBase { [HttpGet(Name = "GetWeatherForecast")] public string Get() { return "Hello word" ; } } }