mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
17 lines
445 B
C#
17 lines
445 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using sodoff.Schema;
|
|
using sodoff.Util;
|
|
|
|
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(XmlUtil.ReadResourceXmlString("mmo"));
|
|
}
|
|
}
|