Created
April 16, 2018 15:01
-
-
Save aramkoukia/1c2e88c9d49ded4327d54074110d5206 to your computer and use it in GitHub Desktop.
Ping Controller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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