add characters controller and repository

This commit is contained in:
StevanFreeborn
2022-06-24 09:58:35 -05:00
parent 995035ad22
commit 21d9fdab16
6 changed files with 155 additions and 1 deletions
@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
namespace server.Controllers.v1
{
[ApiController]
[ApiVersion("1.0")]
[Route("/api/episodes")]
[Produces("application/json")]
public class CharactersController : ControllerBase
{
}
}