jumpstart-games-reduxed/src/Controllers/Common/ConfigurationController.cs
2023-06-27 22:15:06 +02:00

16 lines
415 B
C#

using Microsoft.AspNetCore.Mvc;
using sodoff.Schema;
namespace sodoff.Controllers.Common;
public class ConfigurationController : Controller {
[HttpPost]
[Produces("application/xml")]
[Route("ConfigurationWebService.asmx/GetMMOServerInfoWithZone")]
public IActionResult GetMMOServerInfoWithZone() {
// TODO: this is a placeholder
return Ok(new MMOServerInformation[0]);
}
}