ProjectLighthouse/ProjectLighthouse.Servers.GameServer/Controllers/StoreController.cs

10 lines
No EOL
294 B
C#

using LBPUnion.ProjectLighthouse.Servers.GameServer.Types;
using Microsoft.AspNetCore.Mvc;
namespace LBPUnion.ProjectLighthouse.Servers.GameServer.Controllers;
public class StoreController : GameController
{
[HttpGet("promotions")]
public IActionResult Promotions() => this.Ok();
}