using Microsoft.AspNetCore.Mvc; namespace hello.Controllers { [Route("api/[controller]")] [ApiController] public class HelloController : ControllerBase { [HttpGet] public ActionResult Get() { return Ok("Helló Világ!"); } } }