mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-19 03:31:29 +00:00
15 lines
No EOL
434 B
C#
15 lines
No EOL
434 B
C#
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using ProjectLighthouse.Serialization;
|
|
|
|
namespace ProjectLighthouse.Controllers {
|
|
[ApiController]
|
|
[Route("LITTLEBIGPLANETPS3_XML/slots")]
|
|
[Produces("text/xml")]
|
|
public class SlotsController : ControllerBase {
|
|
[HttpGet("by")]
|
|
public IActionResult SlotsBy() {
|
|
return this.Ok(LbpSerializer.BlankElement("slots"));
|
|
}
|
|
}
|
|
} |