mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-25 22:51:29 +00:00
13 lines
No EOL
369 B
C#
13 lines
No EOL
369 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace ProjectLighthouse.Controllers {
|
|
[ApiController]
|
|
[Route("LITTLEBIGPLANETPS3_XML/enterLevel")]
|
|
// [Produces("text/plain")]
|
|
public class EnterLevelController : ControllerBase {
|
|
[HttpGet("enterLevel/{id}")]
|
|
public IActionResult EnterLevel(string id) {
|
|
return this.Ok();
|
|
}
|
|
}
|
|
} |