mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-10-03 22:59:41 +00:00
11 lines
No EOL
388 B
C#
11 lines
No EOL
388 B
C#
using LBPUnion.ProjectLighthouse.Servers.GameServer.Types;
|
|
using LBPUnion.ProjectLighthouse.Types.Serialization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Servers.GameServer.Controllers;
|
|
|
|
public class DeveloperController : GameController
|
|
{
|
|
[HttpGet("developer_videos")]
|
|
public IActionResult DeveloperVideos() => this.Ok(new GameDeveloperVideos());
|
|
} |