From 77d5e2078df3664525f6d22066975379991a07f9 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Wed, 31 Jan 2024 16:07:44 +0100 Subject: [PATCH] feat: GET /trial --- .../Controllers/TrialController.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Minecraft-Realms-Emulator/Controllers/TrialController.cs 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; + } + } +}