feat: GET /trial

This commit is contained in:
CyberL1 2024-01-31 16:07:44 +01:00
parent 821e20d708
commit 77d5e2078d

View 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;
}
}
}