Files
HomeMonitor/Hub/Service/Controllers/ValuesController.cs
2019-08-03 08:36:57 -04:00

18 lines
407 B
C#

using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
namespace ChrisKaczor.HomeMonitor.Hub.Service.Controllers
{
[Route("[controller]")]
[ApiController]
public class ValuesController : ControllerBase
{
// GET values
[HttpGet]
public ActionResult<IEnumerable<string>> Get()
{
return new[] { "value1", "value2" };
}
}
}