Skip to content

Instantly share code, notes, and snippets.

@aramkoukia
Created April 16, 2018 15:01
Show Gist options
  • Save aramkoukia/1c2e88c9d49ded4327d54074110d5206 to your computer and use it in GitHub Desktop.
Save aramkoukia/1c2e88c9d49ded4327d54074110d5206 to your computer and use it in GitHub Desktop.
Ping Controller
namespace Product.CommandService.Controllers
{
[Route("api/[controller]")]
public class PingController : Controller
{
// GET api/ping
[HttpGet]
public string Get()
{
return "Ping";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment