#262 added working eureka sample (#333)

This commit is contained in:
Tom Pallister
2018-04-26 09:38:36 +01:00
committed by GitHub
parent 027bf6867a
commit 5b63f333f7
18 changed files with 411 additions and 12 deletions

View File

@ -0,0 +1,16 @@
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;
namespace DownstreamService.Controllers
{
[Route("api/[controller]")]
public class CategoryController : Controller
{
// GET api/values
[HttpGet]
public IEnumerable<string> Get()
{
return new[] { "category1", "category2" };
}
}
}