[Route("api/[controller]")] | |
[ApiController] | |
[Authorize] | |
public class PetsController : ControllerBase | |
{ | |
[HttpGet] | |
public ActionResult<IEnumerable<string>> Get() => new [] { "Max", "Charlie", "Molly" }; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment