diff --git a/Minecraft-Realms-Emulator/Controllers/TrialController.cs b/Minecraft-Realms-Emulator/Controllers/TrialController.cs new file mode 100644 index 0000000..8af037c --- /dev/null +++ b/Minecraft-Realms-Emulator/Controllers/TrialController.cs @@ -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; + } + } +}