mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-10-03 22:59:41 +00:00
10 lines
No EOL
294 B
C#
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();
|
|
} |