mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2024-11-21 13:48:21 -05:00
feat: GET /trial
This commit is contained in:
parent
821e20d708
commit
77d5e2078d
15
Minecraft-Realms-Emulator/Controllers/TrialController.cs
Normal file
15
Minecraft-Realms-Emulator/Controllers/TrialController.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Minecraft_Realms_Emulator.Controllers
|
||||
{
|
||||
[Route("[controller]")]
|
||||
[ApiController]
|
||||
public class TrialController : ControllerBase
|
||||
{
|
||||
[HttpGet(Name = "GetTrial")]
|
||||
public bool Get() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user