Added controller for gameconfig, easiest one to stub out more or less

This commit is contained in:
2021-10-24 21:26:13 -04:00
parent 627ebab716
commit cd55d95ba9
2 changed files with 65 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using TOOHUCardAPI.Models;
namespace TOOHUCardAPI.Controllers
{
@@ -11,5 +12,10 @@ namespace TOOHUCardAPI.Controllers
[ApiController]
public class GameConfigController : ControllerBase
{
[HttpGet]
public async Task<GameConfigResponse> GetGameConfig()
{
return GameConfigResponse.Default();
}
}
}