ProjectLighthouse/ProjectLighthouse.Servers.GameServer/Controllers/StoreController.cs
2022-05-14 23:37:55 -04:00

12 lines
No EOL
305 B
C#

using Microsoft.AspNetCore.Mvc;
namespace LBPUnion.ProjectLighthouse.Servers.GameServer.Controllers;
[ApiController]
[Route("LITTLEBIGPLANETPS3_XML/")]
[Produces("text/xml")]
public class StoreController : Controller
{
[HttpGet("promotions")]
public IActionResult Promotions() => this.Ok();
}