21 lines
489 B
C#
21 lines
489 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using TOOHUCardAPI.DTO;
|
|
|
|
namespace TOOHUCardAPI.Controllers
|
|
{
|
|
[Route("api/[controller]")]
|
|
[ApiController]
|
|
public class GameConfigController : ControllerBase
|
|
{
|
|
[HttpGet]
|
|
public async Task<GameConfigResponse> GetGameConfig()
|
|
{
|
|
return new GameConfigResponse();
|
|
}
|
|
}
|
|
} |