mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-19 19:14:51 +00:00
12 lines
No EOL
305 B
C#
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();
|
|
} |